Forum Replies Created
-
AuthorPosts
-
satori
KeymasterHey Quentro,
the video insertion function is found in the “header-functions.php” file in the theme’s root folder; line 289 contains the code that needs to be altered to display the controls on YouTube videos, you can download the changed file from my repository here.
Please let me know if it works.
Best,
Andrii / Satori Studiosatori
KeymasterThanks Quentro!
satori
KeymasterAh, now I see :) Sorry for the misunderstanding.
The algorithm that determines the position of the logo in Ikebana presumes that if there is no icon menu, the logo automatically gets put inside of the menu bar, for visual consistency. In case you wish it to stay outside, let me know, I can provide the CSS code.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Rumbledesign,
at the moment the Theme Options panel does not offer such function, which, I believe, should be corrected. I will add the respective setting to the upcoming Ikebana version 2.1 update, thank you for pointing this out. Meanwhile, you can add a hover style with the use of one line of CSS – please add this code to the “Style: Add Custom CSS” tab of the Theme Options panel:
#social-top a:hover { color: #FFFFFF; }
replacing the #FFFFFF with the hex code of any color you need.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Rumbledesign,
first of all, thank you for the purchase!
The green “Ikebana” tile in the theme demo is a “link”-format project with a thumbnail (featured image) and link URL pointing to the website front page ;) You can find more information about the formats on pages 8-9 of the theme manual. Note that in order for it to stay in front of all other project in the grid, you’d need to declare it as “sticky” in the “Sticky (Always First) meta box while in the project editor mode. If you want that tile to reveal the background, you can use an “opacity” CSS rule for that particular tile.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey On3w,
first of all, thank you for the purchase!
I am not sure I understood the issue – could you please clarify? Also, please provide the URL of the website in question, if possible. Thanks for your patience!
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Damien,
looking good, glad it worked!
Best,
Andrew / Satori Studiosatori
KeymasterHey Damien,
could you please clarify: in which sense does the “Large” size stop working when you add the code above? The class is not included into the post class, the meta box does not show, or the boxes do not receive a proper size?
Have you added an additional option for the size drop-down metabox (also in the functions.php file, look for the “Add meta box to portfolio items with post box size options” title)?
Regarding the code, please try merging the two functions into one:
// Add custom post class for box size
function size_class($classes) {
global $post;
$postclass = ”;
if ( get_post_meta($post->ID, ‘satori_post-size’, true) == ‘Large’ ) {
$postclass .= ‘post-size-large’;
}
if ( get_post_meta($post->ID, ‘satori_post-size’, true) == ‘Long’ ) {
$postclass1 .= ‘post-size-long’;
}
$classes[0] = $postclass;
return $classes;
}
add_filter(‘post_class’, ‘size_class’);
Sincerely,
Andrew / Satori Studiosatori
KeymasterGlad to hear it helps!
Should you have other questions or issues with the theme, do not hesitate to contact me.
By the way, I would be very grateful if you could rate the theme and the support from the Downloads tab of your ThemeForest account.
Best,
Andrii / Satori StudioDecember 11, 2013 at 12:37 pm in reply to: Social icons on the same line as the menu on smaller screens #2075satori
KeymasterHey Quentro,
here goes:
@media only screen and (max-width: 1030px) and (min-width: 767px) {
#header #logo-wrap {
display: block !important;
margin-bottom: 20px;
#header #nav-wrap {
display: table-cell !important;
}
#header #nav-wrap #nav-primary {
padding-left: 20px !important;
}
#header #social-top {
display: table-cell !Important;
padding-left: 20px !important;
}
}
You can insert this code into the “Style: Add Custom CSS” tab of the Theme Options panel, or, if you are using a child theme (which is recommended) – into the child theme’s style.css file.
Please let me know if it works!
Sincerely,
Andrii / Satori Studio -
AuthorPosts