Forum Replies Created
-
AuthorPosts
-
November 23, 2017 at 10:36 am in reply to: How can I change Font-size(or type or line-height) for content part? #54144
Theme Horse Support Team
KeymasterHi Pentalogia,
Just add the below custom css code to change the font size for content area only.
#primary #content .entry-content { font-size: 21px; line-height: normal; }
Thank you!
Theme Horse Support Team
KeymasterHi Pierre,
Please go to ./inc/structure/content-extentions.php on line no. 140 there you will see the below line of code.
<p><?php echo substr(get_the_excerpt(),0,126); ?></p>
Change the above character count value 126 as per your need.Thank you!
Theme Horse Support Team
KeymasterHi @ekatoenteka,
Just add below custom css and image will be fade while hover on it.
.post-main .has-post-thumbnail .entry-wrap:hover { opacity: 0.6; -moz-opacity: 0.6; filter:alpha(opacity=60); }
Thank you!
Theme Horse Support Team
KeymasterThank you!
Theme Horse Support Team
KeymasterHi Pierre,
Add below custom css code to show text ‘menu’ for toggle menu.
@media only screen and (max-width: 767px){ .menu-toggle { width: 40px; } .menu-toggle:before { font: 14px "Open Sans",sans-serif; content: 'menu'; } }
Thank you!
Theme Horse Support Team
KeymasterHi Patrick-nwakogo,
Please add below custom css code to display the featured title and content of the slider.
@media only screen and (max-width: 1078px) { .featured-text .featured-title, .featured-text .featured-content { padding: 8px; } .featured-text .featured-title { font-size: 13px; line-height: 10px; } .featured-text .featured-content { line-height: 18px; } } @media only screen and (max-width: 767px) { .featured-title, .featured-content { display: block; } }
Thank you!
November 23, 2017 at 7:30 am in reply to: Attitude Business Layout with WooCommerce now too narrow #54135Theme Horse Support Team
KeymasterHi Doppa,
We have just made a WooCommerce compatible to the theme.
You will see the default WooCommerce buttons color and other color to the main theme color.
If you are a pro theme user then while changing the different color elements from the theme option this will also effect on elements of WooCommerce too.Thank you!
Theme Horse Support Team
KeymasterGreat!
Theme Horse Support Team
KeymasterHi Pierre,
the default value for excerpt is 50, However we have set the character length too for content that display on post content. You have to change the character length as well from ./inc/structure/content-extentions.php on line:40
Thank you!
Theme Horse Support Team
KeymasterHi @ekatoenteka,
Do you want to fade the image to 10% opacity as you hover on the featured image?
Thank you!
Theme Horse Support Team
KeymasterGreat! 🙂
November 22, 2017 at 6:25 am in reply to: Attitude Business Layout with WooCommerce now too narrow #54118Theme Horse Support Team
KeymasterHi Doppa,
Yes we have made a WooCommerce compatible for attitude theme.
You can try setting the Default layout Option via Customizer > Design Options > Default Layout Options where WooCommerce shop/product page controls through this settings now.If it won’t work please provide us the site URL? So that we can see the exact issue and provide you a support.
Thank you for using our theme.
Theme Horse Support Team
KeymasterThat’s Great.
Theme Horse Support Team
KeymasterNo worries!
Theme Horse Support Team
KeymasterHi Pierre,
header.php will call in each and every page in WordPress. So the code will be run in each and every pages you have.
You have to add some conditions on the exact line in header.php as describe below:
<?php if ( is_front_page() || is_home() ) { //your code goes here. } ?>
Please replace the text
//your code goes here.
to your own code.Thank you!
-
AuthorPosts