Styled Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pure & Simple] Menu with circle imagesHi mr.tl,
Could you please explain us on detail so we can provide you appropriate solution as soon as possible.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Button-How To Get ThemHi there,
Its been long time we didn’t hear from your side, hope you have fixed your issue.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Can't rotate photosHi there,
We assumed that you want to rotate all image. You can do same by uploading rotate image. YOu can do it same by many photoshop tools. And also you can do it from media gallery of WordPress dashboard.
Go to dashboard->media-> click on image-> on left bottom corner there you will find edit option-> There you can find tools to rotate images.If you want to rotate image while hover you need to follow this example:
@see http://www.w3schools.com/cssref/css3_pr_transform.asp.selector class:hover { width: 200px; height: 100px; background-color: yellow; /* Rotate div */ -ms-transform: rotate(7deg); /* IE 9 */ -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */ transform: rotate(7deg); }Let us know how it will goes.
Thanks
Hi there,
The content on footer is coming from jetpack infinite scroll properties. So you just deactivate infinite Scroll properties from jetpack dashboard.
please don’t hesitate to reach back out to us. We will be more than glad to assist you
We look forward to your response
Thanks
Forum: Themes and Templates
In reply to: [Flat Responsive] Custom ColoursHi there,
To make background image and color to works you need to add custom css.
white background image is overwriting background image and color, so you need to remove those background. Here we have given example to remove white background image from section area, here is how we do it..fr-contents { background-color: none; }So we need to remove all section background colr, which will make background image and color to works
For page content background you can follow this css.
.page #fr-content-area {
background-color: #401818;
}please don’t hesitate to reach back out to us. We will be more than glad to assist you
We look forward to your response
Thanks
Forum: Themes and Templates
In reply to: [Encase] Theme default header image size is wrongThank you @banacan99. We will surely keep this on mind while releasing next update.
Thanks
Forum: Themes and Templates
In reply to: [Flat Responsive] Customize page sidebar widget areaHi there,
In that case there is no space to decrease so padding is not working out there.
You can try this:
.widget { margin-bottom: -20px !important; }Note: PLease add this css on child theme style.css file so your changes will not lost on theme update.
Forum: Themes and Templates
In reply to: [Lavish] Download Now Button HyperlinkHi CravingGod,
You need to find out the place yourself and edit possible template of theme files to add form from mail chimp.
Don’t hesitate to ask a question for further information about setting of themes.
Note: If you’re not technically sound in WordPress, we suggest you to hire a developer.
Thanks
Forum: Themes and Templates
In reply to: [Flat Responsive] Custom-Header in child theme not workingWe are really very soory for the inconvenience,there is bug in our theme , we will resolved it on another version.
Here is the code you want to do some tweak:
There in header.php you will find this code:if ( has_header_image() || is_active_sidebar( 'banner' )) { ?> <aside id="fr-banner" class="fr_responsive_banner" style="background-color: <?php echo esc_html(get_theme_mod( 'banner_bg', '#c6b274' )); ?>; <?php if ( get_header_image() ) : ?>background-image: url(<?php header_image(); ?>);<?php endif; ?><?php if( get_post_meta($post->ID, 'header_background', true) ) { ?> background-image: url(<?php echo esc_url(the_field('header_background')); ?>); <?php } ?> color: <?php echo esc_html(get_theme_mod( 'banner_text_colour', '#ffffff' )); ?>;"> <?php get_sidebar( 'banner' ); ?> </aside> <?php } ?>There in above code you just need to change is_active_sidebar( ‘banner’ )) condition to is_active_sidebar( ‘banner-wide’ )). AND finally your codes will looks like:
if ( has_header_image() || is_active_sidebar( 'banner-wide' )) { ?> <aside id="fr-banner" class="fr_responsive_banner" style="background-color: <?php echo esc_html(get_theme_mod( 'banner_bg', '#c6b274' )); ?>; <?php if ( get_header_image() ) : ?>background-image: url(<?php header_image(); ?>);<?php endif; ?><?php if( get_post_meta($post->ID, 'header_background', true) ) { ?> background-image: url(<?php echo esc_url(the_field('header_background')); ?>); <?php } ?> color: <?php echo esc_html(get_theme_mod( 'banner_text_colour', '#ffffff' )); ?>;"> <?php get_sidebar( 'banner' ); ?> </aside> <?php } ?>Let us know how it will goes.
Forum: Themes and Templates
In reply to: [Pure & Simple] Button-How To Get ThemHi jedi11,
Could you please provide your site URL, so we could provide you solution of your issue as soon as possible.
Also you can try by this custom css on child theme style.cssh1.entry-title a { font-family: lato !important; }Let us know if you want for information about our theme, we are here to help you.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Making Content Span The Width Of The PageHi there,
Its been long time we didn’t hear from your side, hope you have fixed your issue.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] "more posts" not showing up at bottom of pageHi Nycfitfoodfashion,
Its been long time we didn’t hear from your side, hope you have fixed your issue.
Thanks
Forum: Themes and Templates
In reply to: [Flat Responsive] Custom-Header in child theme not workingHi there,
First let us now you have updated theme to latest version 1.4.0. Then you can use any of header or banner areas. You will be able to get slider (shortcode on banner areas ) even you didn’t have chosen header image.
Let us know how it will goes.
Thanks
Forum: Themes and Templates
In reply to: [Flat Responsive] Header different in Firefox/ChromeHi There,
Please use the following css to fix your issue:
.img-responsive { width: 100%; }NOTE:Please use the custom css plugin or child theme to write the css.
Thanks