Maruti Mohanty
Forum Replies Created
-
Hi
To do the above changes add the following code to your child theme style.css file or by using a custom css plugin.
// Increase the width form 980 to 1080 .container { width: 1080px; }To make the text and icons center, add the following css.
.widget ul { text-align: center; } ul.widget-social-icons { padding-left: 18%; }Hope this helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] How to get rid of "More Posts"Hi linabosque
Can you confirm if the above solutioned worked, if yes please mark the thread resolved.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Mobile VersionHi Both,
I checked both the sites and show the style.css file of the child theme, I dont see an importing of the parent theme style.css into it.
So Iām assuming you have something like this in your child functions.php file:
add_action('wp_enqueue_scripts', 'function_name');Try adding a priority like this:
add_action('wp_enqueue_scripts', 'function_name', 99);Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Change BlockquoteHi
Please have a look at the following links:
http://codex.wordpress.org/Playing_With_Fonts
https://wordpress.org/plugins/easy-google-fonts/Hope these helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Side bar going to the bottom pageHi
I looked into your site and it seems you have figured out and is fixed now. If yes please share the issue and the steps you followed to fix it. else share a link to the page/post where the issue exists
Thanks
Hi
can you share a link to your site for us to have a look?
Thanks
Hi L
This is not anything do with the theme. WordPress does sometimes compress the images.
Add the following code to your theme’s functions.php file to disable that compression. I would suggest you to do the changes using a child theme
add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );Read the following blog for details
Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Hiero] responsive columns not working Please help a guy outHi
This link isnt working. Please recheck
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Meta slider margin to Nav menu GapHi
This link doesnt work. Please re check.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Post Modified Date & General HTMLYou are welcome. Glad it helped š
Forum: Themes and Templates
In reply to: [Hiero] How to ad adsense ad code to the header in Hiero themeHi
Now its working for me.
Checked the site and found you have figured iit out and have added the ad in there.
I have found a solution.
You can add the below in the theme’s or child theme‘s functions.php file
to allow wp avatar uploading also for contributors and not for subscribers// Allowing contributors but not subscribers. function se_allow_wp_avatar() { if ( current_user_can( 'edit_posts' ) ) return true; else return false; } add_filter( 'wpua_is_author_or_above', 'se_allow_wp_avatar' );This filter can also be used along with current_user_can function to allow uploading of images for only a set of roles like admins or authors or combinations of roles.
I have explained it in a blog which I wrote after finding the solution.
Hope it helps!!
Forum: Themes and Templates
In reply to: [Fashionistas] Sidebar not visible in main page /post pageHi
can you please share a link to your site?
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] fashionista new updated themeyou are welcome.. Glad it helped š
Forum: Themes and Templates
In reply to: [Hiero] How to ad adsense ad code to the header in Hiero themeThe link doesnt work!! can you recheck?