Styled Themes
Forum Replies Created
-
Forum: Reviews
In reply to: [Pure & Simple] Realy great!Hi There,
Thanks for loving our theme and if you want more theme then you can follow this link for our other themes. Have a great day!
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How to reduce the height of the bannerHi irenepv,
You are placing too large size of background image on header.Which indeed doesn’t get area to display ,so it is cropped on buttom. Theme suggest you the 2560widh and wiht 260 height.
So you need to provide appropriate height for the background image . Here is the example.
.header-bg { height: 261px; }And white spaces on leaf is due to the logo area. To fully disable the logo you can apply this css:
.site-info { display: none; }Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] changing font sizeHi elevatingyourbusiness,
We hope you got the solution of your issue, if not then please let us know. And thanks for Bojan for the solution.
Thanks
Forum: Themes and Templates
In reply to: [Encounters Lite] "Continue Reading" Button not showing up…Hi there,
TO have continue reading on your blog post you need to add readmore tag on content area. This can be directly from page editor tools. Here is the article which will help you on building read more tag.
https://en.support.wordpress.com/more-tag/Let us know if you still got the problems, we will be more than glad to assist you.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How to reduce the height of the bannerHi there,
It seems you had switched your site, so this may not be appropiriate soluiton but may help you. To make banner image full width you can keep this css on child theme
#page-banner img { height: 400px; max-height:1200px; }Let us know how it will goes.
Thanks
Forum: Themes and Templates
In reply to: [Scripted] Getting blank page after making an updateCan you share us error you are getting while updating child theme. And also the possible screenshot so that we can track down exact issue.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Theme Customizer not workingHi deepermagic,
Many thanks for your suggestion, we will soon release the update fixing this issue.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] change the picture on the front pageHi alexvb001,
The image are you getting is default image of theme. You can remove defalt content directly from customizer basic setting. Finally if you want to place other image then you can place text widgets on banner sidedbar and place image tag on text widgets content area.
for an example
<img src=”url of image” />Note: Please do search your queries on forum, this may discussed already. This will save both of our time
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How to reduce the height of the bannerHi irenepv,
You had missed out to send site URL, so we request you to send us your site url so we can see.
Thanks
Forum: Themes and Templates
In reply to: [Scripted] Images not loadingYou are most welcome Erez, let us know if you got any question on our theme. We will be more than glad to assist you.
Thanks
Forum: Themes and Templates
In reply to: [Circumference Lite] Circumference Lite Child Theme SearchformYou can place given code below `set_post_thumbnail_size( 150, 150, array( ‘center’, ‘center’) );
`Note: Please don’t use php closing tag ?>, at the very end of functions.php .It is not goood practice and it may shows error
Thanks
Forum: Themes and Templates
In reply to: [Preferential Lite] Banner ImageOh , it’s really frustrating.
-> Create child theme and create new file called sidebar-banner.php , then paste the below code on sidebar-banner.php
<?php /** * Sidebar for the banner area * * @package Preferential-child * @since 2.0.0 */ if(! is_active_sidebar( 'banner' ) && is_front_page() && (get_theme_mod ( 'hide_default_banner' ) == '' ) ) { ?> <div id="pref-banner" style="border-color: <?php echo get_theme_mod( 'banner_border', '#cde4ec' ); ?>; padding:<?php echo get_theme_mod( 'banner_pad', '0 0 0 0' ); ?>"> <div class="textwidget"> <img src="<?php echo get_template_directory_uri().'/images/prefential-banner.jpg'; ?>" alt="preferential-lite"> </div> </div> <?php } elseif (is_front_page() && ( get_theme_mod ( 'show_banner_on_pages' ) == '') ) { ?> <div id="pref-banner" style="border-color: <?php echo get_theme_mod( 'banner_border', '#cde4ec' ); ?>; padding:<?php echo get_theme_mod( 'banner_pad', '0 0 0 0' ); ?>"> <?php dynamic_sidebar( 'banner' ); echo '</div>'; } elseif ( get_theme_mod( 'show_banner_on_pages' ) != '' ) { ?> <div id="pref-banner" style="border-color: <?php echo get_theme_mod( 'banner_border', '#cde4ec' ); ?>; padding:<?php echo get_theme_mod( 'banner_pad', '0 0 0 0' ); ?>"> <?php dynamic_sidebar( 'banner' ); echo '</div>'; } else { return false; }Note: Using child theme will prevent you csutom changes on theme update
Thanks
Forum: Themes and Templates
In reply to: [Preferential Lite] Banner ImageHi there,
You can find this following code on sidebar-banner.php onl line no 19-24
elseif ( ! is_front_page() && ( get_theme_mod( 'show_banner_on_pages' ) != '') ) { ?> <div id="pref-banner" style="border-color: <?php echo get_theme_mod( 'banner_border', '#cde4ec' ); ?>; padding:<?php echo get_theme_mod( 'banner_pad', '0 0 0 0' ); ?>"> <?php dynamic_sidebar( 'banner' ); echo '</div>'; } else {Replace the above code with this following code:
elseif ( is_front_page() && ( get_theme_mod( 'show_banner_on_pages' ) != '') ) { ?> <div id="pref-banner" style="border-color: <?php echo get_theme_mod( 'banner_border', '#cde4ec' ); ?>; padding:<?php echo get_theme_mod( 'banner_pad', '0 0 0 0' ); ?>"> <?php dynamic_sidebar( 'banner' ); echo '</div>'; } else {It may solve your issue.
Thank
Forum: Themes and Templates
In reply to: [Preferential Lite] Banner ImageHi nppbc,
We had updated our theme to latest version. Before updating to latest version please make a backup of your site so you can take action if disaster happens.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How to reduce the height of the bannerHi There,
You can remove the maintenance mode for some hours, so that it will be easy to both of us. We hope you understand.
Thanks