Styled Themes
Forum Replies Created
-
Hello @hugofant,
Here is a quick fix. Please add the following css inside the additional css section inside Dashboard>>Appearance>>Customize;
.container { width: 90%; } /* for instance; For width more than 1440px */ @media (min-width: 1440px){ .container { width: 90%; } }Note: You can change the width of your own.
P.S: If you’re modifying any theme file/s, please use child themeLet us know.
Thanks!Hello @hugofant,
Not much clear about your query! Is it you want to increase the max-width? or please elaborate.
Thanks!
Hello @homemadejam,
It’s working fine while checking from our end.
Is it generating any errors? Sometimes the third party plugin may create conflict. Please temporarily deactivate the plugin/s if you’ve used any and reactivate them one by one to check if there is something associated to the plugin.Let us know.
Thanks!Forum: Reviews
In reply to: [Flat Responsive] Simple and ProfessionalThank you @tlindeman. We are glad you like the theme, we try to improve it each time we work on it.
Forum: Themes and Templates
In reply to: [Flat Responsive] Featured Image Zoom / ScaleForum: Themes and Templates
In reply to: [Flat Responsive] Featured Image Zoom / ScaleHello tlindeman,
Here is a quick fix. Go to Appearance>>Customize>>Additional css and add the following css;
.fr-images-flip1 img:hover { transform: none; -moz-transform: none; -o-transform: none; -webkit-transform: none; }Let us know.
Thanks!Forum: Themes and Templates
In reply to: [Pure & Simple] I want to use Google Fonts as the site title.Hello Sara,
Yes, you’re going great. Just follow the above steps and once you’re done please check and let us know. It is to remind you again that please make sure the changes are performed on your child them.
Thanks!
Forum: Themes and Templates
In reply to: [Flat Responsive] Hyperlink font color not blueHello @azpimagensoc,
It seems the hyperlinks of your blog posts are custom styled with inline css with the fixed color black which is overwriting the theme’s main style or incase you’ve used any other plugins to let you know.
Please go inside particular post/s and check inside the code editor on your backend.let us know.
Thanks!Forum: Themes and Templates
In reply to: [Flat Responsive] Hyperlink font color not blueHello @azpimagensoc,
We could not figure out any hyperlinks in your blog posts. Could you please locate it where on your website/blog posts?
Thanks!
Hi,
If you want to use as it is not uppercase as in your site use following css code:
.site-title a { text-transform: none; }Thanks!
Forum: Themes and Templates
In reply to: [Pure & Simple] I want to use Google Fonts as the site title.Hi,
to use google font in WordPress site you have to follow following steps:
1 . Enque google font in function.php.
for ex if you want to enquey lato font : wp_enqueue_style( ‘pure-simple-lato’, ‘https://fonts.googleapis.com/css?family=Lato’);2. Now you can use
.site-title{
font-family: Lato;
}3. And make sure to use child theme so that this code wont get override when you update latest version of pure and simple theme.
Thanks!
Forum: Themes and Templates
In reply to: [Pure & Simple] resize the headeryou have to change custom-header.php for this. It is inside puresimple/inc/custom-header.php . change the width and height according to your need there. Make sure to create child theme so that it won’t get override when you update theme. To create child theme please refer to following documentation. https://developer.wordpress.org/themes/advanced-topics/child-themes/
Thanks!
Forum: Themes and Templates
In reply to: [Pure & Simple] GutenbergHi,
Yes we have released new version of pure and simple theme 3.2.0 which support for Gutenberg. You can update to WordPress 5.0
Thanks!
Forum: Themes and Templates
In reply to: [Luminescence Lite] fatal error footer.phpHi,
I can’t seem to replicate your error, But to solve your problem you need to edit footer.php. Replace below code from 35 to 48.
<div id="copyright-wrapper" style="color: <?php echo get_theme_mod( 'copyright_text', '#787c7f' ); ?>;"><?php esc_attr_e('Copyright ©', 'luminescence-lite'); ?> <?php echo date_i18n( date('Y') ); ?> <?php echo get_theme_mod( 'copyright', 'Your Name' ); ?>.<?php esc_attr_e('All rights reserved.', 'luminescence-lite');?></div>Thanks!
Forum: Themes and Templates
In reply to: [Flat Responsive] Child function not workingHello sprockettechweb,
Please add the following inside your child theme’s functions.php file and let us know;
add_action( 'after_setup_theme', 'fr_add_comment_url_filter' ); function fr_add_comment_url_filter() { add_filter( 'comment_form_default_fields', 'fr_disable_comment_url', 20 ); } function fr_disable_comment_url($fields) { unset($fields['url']); return $fields; }Thanks!