Forum Replies Created
-
AuthorPosts
-
satori
KeymasterDear Alejandra,
that’s odd, since the portfolio template file in Ikebana (“page_portfolio.php”) does not even contain a title tag. In case it appears again, please let me know!
Sincerely,
Andrew / Satori Studiosatori
KeymasterDear Alejandra,
regarding hiding the title on portfolio page – could you please provide the direct URL of the page in question?
I will answer the additional questions in the same order:
1). Yes, you can add this line: #container-footer { height: 400px; } in the “Style: Add Custom CSS” tab of the Theme Options panel, replacing the “400” with any number you like.
2). I’m using the following settings in the “Page Elements” tab of the Theme Options panel in the demo.
3). Every icon menu item in the “Icon Menu” tab of the Theme Options panel should have either the “Link URL” of the “Filter” field filled in in order to function properly. Please check if this is the case on your website.
Sincerely,
Andrew / Satori Studiosatori
KeymasterHey Mahen,
in WordPress the blog posts page is being rendered by a separate template “index.php” which does not follow normal template rules. There is no back-end option in Kabuki to make the blog posts page full-width, and it was not envisaged as a separate template in Kabuki, but you can achieve the desired result by using some custom CSS (insert it into the “style.css” files, which should open by default when you visit the “Appearance -> Editor” admin section):
@media only screen and (min-width: 990px) {
.blog #content { width: 686px !important; }
.single-post #content .featured-thumbnail img, .page #content img, .blog #content .featured-thumbnail img, .single-post #content a img, .tag #content .featured-thumbnail img, .category #content .featured-thumbnail img, .archive #content .featured-thumbnail img { max-width: 686px !important; }
}
@media only screen and (max-width: 990px) and (min-width: 767px) {
.blog #content { width: 536px !important; }
.single-post #content .featured-thumbnail img, .page #content img, .blog #content .featured-thumbnail img, .single-post #content a img, .tag #content .featured-thumbnail img, .category #content .featured-thumbnail img, .archive #content .featured-thumbnail img { max-width: 536px !important; }
}
For the layout to work, you will also need to download this custom file I’ve made for you, unzip it, and upload the contained file into the theme folder (/wp-content/themes/Kabuki) via ftp.
Let me know if this works!
Sincerely,
Andrew / Satori Studiosatori
KeymasterDear Alejandra,
please clarify – do you want the titles to be hidden on pages with the “Portfolio” template – or on the portfolio projects (i.e. the pages you get to when you click any of the portfolio boxes)? If the former, then the Theme Options setting “Hide page titles on pages” (“Page Elements” tab) should do the trick. In case you meant the latter, the Theme Options setting mentioned above will not affect them, since they are not pages but posts (of type “Project”); in this case you can use the following CSS:
.single-project .post-header { display: none; }Please let me know if I misunderstood the question!
Sincerely,
Andrew / Satori Studiosatori
KeymasterGlad to hear!
Should you have other questions, do not hesitate to contact me!
Best,
Andrew / Satori Studiosatori
KeymasterAh, I see :) sorry for mis-interpretation!
Please download this updated stylesheet from my repository, unzip it, and upload the file into the theme folder (/wp-content/themes/Haiku). Let me know if the fix works!
Sincerely,
Andrew / Satori Studiosatori
KeymasterHey Antonio,
glad to hear that you managed to get it to work!
I will look into both areas and try to make the image overlay gallery more flexible. You mentioned the “gallery” project format – indeed I recommend you to try out that one as well, because initially I intended that format specifically for displaying several images in one project with greater degree of control; and if you save the gallery project in “large” size, the image gallery will be almost as big as the popup overlay images from “image”-format projects.
Sincerely,
Andrew / Satori Studiosatori
KeymasterHey Rohidas,
the wide tag title box in the beginning of portfolio tag pages is intended by design, so that the user knows what page he/she is on. If you wish, you can remove the boxes by deleting lines 43-53 in the “taxonomy-tagportfolio.php” file in the theme root folder.
I will look into the loading sequence, but I need to be clear that I cannot promise anything definitive at this point.
Sincerely,
Andrew / Satori Studiosatori
KeymasterHey Dylandigits,
first of all, thank you for the purchase!
I am not sure I understood how exactly the contact form behaves on full-width pages (at the moment the page in question has a right-sidebar layout), yet I can tell that in Haiku the contact forms and other input fields are stretched to 100% of the page width by design, i.e. on a full-width page, one should expect them to stretch from one side of the inner content to the other.
If you wish to have a thinner contact form on a full-width page, you can change its behaviour by adding a line of CSS code to the textarea in the “Style: Add Custom CSS” tab of the Theme Options panel:
input[type=”text”], textarea { width: 60% !important; }
you can alter the “60%” to any figure you need. Do not forget to press the “Save All Changes” button in the end!Please let me know if the code does what you need.
Sincerely,
Andrew / Satori Studiosatori
KeymasterHey Jdudeo,
the images are being moved up and left by 2% of the size of the item box (i.e. with the theme’s default settings the box width and height are 260px, which implies the cutoff by 5 pixels.
Sincerely,
Andrew / Satori Studio -
AuthorPosts