Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Change Pages into Categories on top menuYou are welcome 🙂
Forum: Themes and Templates
In reply to: [Hiero] Buttons under ThumbnailHi M
can you please share the solution and mark this thread as resolved so that any other user looking for a similar stuff get most out of it.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Remove top menu in mobile viewHi S
its great to know that you have figured out the solution and thanks for sharing it.
can you please mark this thread resolved, so that any other user looking for a similar issue get most of it.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Change Pages into Categories on top menuHi
Please check this from codex on how to add items to the menu.
You can choose categories as items to the menu.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Moving the featured image on posts to the centre?Hi X
yes I see it now.
Please edit the previous css to the below.
.entry-thumbnail img { margin: 0 auto; }Forum: Themes and Templates
In reply to: [Fashionistas] How can I create the "shop my look" linkYou are welcome 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] translation is not workingHi
check if these links help
http://premium.wpmudev.org/blog/how-to-translate-a-wordpress-theme/
https://thethemefoundry.com/blog/translate-a-wordpress-theme/
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Not breaking menu(top and main)Hi
if by breaking you mean the items breaking to the next line, then thats probably the right way to do.
The width is fixed and anything goes beyond it, should get to the next line.
what do you think ?
Forum: Themes and Templates
In reply to: [Fashionistas] How can I create the "shop my look" linkHi @awanrmb
You are right about no hooks available and also right about using a plugin for the need of a slider, but about custom coding , even if we dont have hooks available, we can always go with child themes 🙂 what do you think 😉
Forum: Themes and Templates
In reply to: [Fashionistas] AT Tabs not workingThanks a lot for the appreciations @moosecleans.
Glad it helped. 🙂
You are welcome 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] Moving the featured image on posts to the centre?Hi
I checked the site and all look good to me.
can you share more details or a screenshot or a direct link showing the issue
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] search box in top navigation menu@mommyrandr did you try the code. can you try and let me know
Forum: Themes and Templates
In reply to: [Fashionistas] Blurry imagesHi
WordPress by default compresses the jpeg images on uploading, and this is done to improve the site performance and enhance the speed.
But you can alter it.
Add the following code in the bottom of your theme’s functions.php file
function se_jpeg_quality_callback() { return (int)100; } add_filter( 'jpeg_quality', 'se_jpeg_quality_callback' );To know more about this, read this blog.
Hope it helps!!
Thanks
Hi
can you make this change to the css
instead of using
.container { width: 1200px; }change it to
@media screen and (min-width: 970px) { .container { width: 1200px; } }