Maruti Mohanty
Forum Replies Created
-
Hi
I looked into your site and if you make the link in the menu black, it wil go missing as the background is black.
So I would advice you to list all the changes you want and post here
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Featured image shows up on categoriesHi
I looked into your site for the issue.
You dont really need to insert the image to the post. The featured image used should be showing in the home page, single post and then category page.
Please remove the image from inside the post and check your content-single.php if the file has the following line at line number 20.
<?php if ( (has_post_thumbnail()) && ( get_theme_mod( 'athemes_post_img' )) ) : ?> <div class="entry-thumbnail"> <?php the_post_thumbnail(); ?> </div> <?php endif; ?>Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Trying to centre the header imageGlad it helped 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] Trying to centre the header imageHi
The width of the header image is more than the width of the container. Please make the image width to 980px or less.
And about making changes to the css of a theme, I would advice you to do the changes using a Child Theme or by using a My custom css plugin to keep the changes preserved even after the update
Thanks
Forum: Plugins
In reply to: [WP Social Avatar] Its NOT connecting to FB anymore….Hi
I looked into it and found no such issues.
Can you please recheck!!
Incase you dont have the lates version of WP and plugin, then please update.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Admin Bar Missing disabling AT Tabs widget fixes issueHi
Can you please share a link and explain the issue in details, cause I tried and used the AT tabs in a local setup and nothing breaks.
Thanks
Ok.
if the site is in local, then can you send some screenshots telling us what is the issue and what do you want as a solution?
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Mobile menu overlapping adsenseHi
Can you share a link to the site so that we can have a look on what are you talking about?
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Need to remove space reserved for image in each postHi
I guess you got this issue resolved from the Atheme’s support forum
Link: http://athemes.com/forums/topic/remove-thumbnails/#post-5535Can you now make this topic resolved, so that people looking for similar issue get the solution too!1
Thanks
Forum: Plugins
In reply to: [WP Social Avatar] Its NOT connecting to FB anymore….Hi
Thank you for informing. Looking into the issue. Will keep you posted.
Thanks again
Forum: Themes and Templates
In reply to: [Hiero] Truncated Titles in PostsHi sj0110,
Can you please create a new thread and explain your issue with the link to your website?
Thanks
Forum: Reviews
In reply to: [WP Social Avatar] Great pluginThank you so much for your appreciations 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] Featured ImageHi
Yes you can make the feature image of any size you want. Just add the image size using the add_image_size().
Then using the handle in content.php line number 25 which now says.
the_post_thumbnail( 'thumb-featured' );and replace “thumb-featured” with your custom image size.
Please go through the_post_thumbnail for more details.
Also I would advice you to do the changes using a Child Theme to keep the changes preserved even after the update
Hope it helps!!
Forum: Themes and Templates
In reply to: [Fashionistas] Add current location and move commentsHi
To do this you would have to add a custom field to each post edit and add new post where you can save the place.
After that use it in the content.php file to appear it in place of comments and move the comments to the left of the time.
I would advice you to do the changes using a Child Theme or to keep the changes preserved even after the update
Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Border Around Blog ContentIf you want a border you need to follow the same thing and wrap the whole content of your site into one container say a div and then use the border to make the effect happen.
You can use the below code
border: 1px solid #000;Thanks