Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Caption on Featured ImageHi
First of all great to know that you are using a child theme.
To add the caption below the featured image, you would need to add some custom code.
You can replace code from file content-single.php line number 20 which reads
<?php if ( (has_post_thumbnail()) && ( get_theme_mod( 'athemes_post_img' )) ) : ?> <div class="entry-thumbnail"> <?php the_post_thumbnail(); ?> </div> <?php endif; ?>to the following
<?php if ( (has_post_thumbnail()) && ( get_theme_mod( 'athemes_post_img' )) ) : ?> <div class="entry-thumbnail"> <?php the_post_thumbnail(); ?> </div> <?php $caption = get_post( get_post_thumbnail_id() )->post_excerpt; ?> <div class="image-caption"><?php echo $caption; ?></div> <?php endif; ?>Now make the necessary style changes to make this look the way you want.
Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Featured ImagesHi gabrielgastelum
You can make the changes like @alikkerr has done. But I would suggest to do so using a child theme, so that this change and any other changes made would remain preserved even after the theme is updated.
Forum: Themes and Templates
In reply to: [Fashionistas] Sizing the Featured Images on main pageHi
I checked your site and the images looks ok, but if you are concerned about the cropping then try and upload images with same height : width ratio as it is used in the theme.
Home page image 640px width 250px height
Hope this information help!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Hyperlink/ Menu Colors😀
Forum: Themes and Templates
In reply to: [Fashionistas] Excerpt text alignment to right of Featured Imageyou are welcome 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] Post Excerpts Missing / No Long ThereYou are welcome 🙂
Forum: Themes and Templates
In reply to: [Hiero] Hiero Side BarHi D
You can achieve the above by making some changes.
Please make the changes using child theme so that the changes remain preserved.
In the theme’s index.php
remove
<?php get_sidebar(); ?>and move it top the top after header, so that it would look like belowget_header(); ?> <?php get_sidebar(); ?>After this add the below css in the style.css file.
.site-sidebar { margin: 0 30px; } .content-area { width: 63%; } .site-content { margin: 0; }After doing so you would need to add the below for section in smaller devices.
.content-area { width: 100%; }Forum: Themes and Templates
In reply to: [Fashionistas] Excerpt text alignment to right of Featured ImageHi
You can do this by adding the following css in your child theme‘s style.css or by using a custom css plugin.
.entry-thumbnail { float: left; margin: 0 20px 20px 0; }Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Post Excerpts Missing / No Long ThereHi
I checked the link and found its because of the social sharing plugin that you are using.
try and check after deactivating the plugin. I am pretty sure this will work.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Mobile View Same As Desktop ViewHi V
Yes this is possible, but this will be a very poor user experience and believe me users wont like it and you will have a fall in users visit from mobile.
Forum: Themes and Templates
In reply to: [Fashionistas] Featured ImagesHi G
can you share a link to you site
I checked you site and it seems it is fetching the original image but the width and height are adjusted by css to contain it within the alloted area
can you explain me what are you trying to do here
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Drop down menue not working on mobileHi S
can you share a link to your site for us to have a look?
Also please check this link and check if this helps
https://wordpress.org/support/topic/child-theme-changes-appearance-and-mobile?replies=4Thanks
Forum: Themes and Templates
In reply to: [Hiero] Heiro Greyed-out menu title on MobileHi D
can you share a screenshot or something … I dont see the menu using grey?
I see it is white
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Full Width PageHi D
The space is same as in the demo, only prob is it looks compact in the customizer look. Here is the link to another demo from the theme’s site
http://demo.athemes.com/hiero/Still you can increase the width of the container to fill in the whitespace, presently it is 980px
use the following css
.container { width: 1080px; }or something you would like.
Now to make the search field and button in one single line, use the below css
.site-sidebar .widget_search .search-submit { font-size: 13px; width: 24%; }Please make all the changes using a child theme or by using a custom css plugin, so that the changes you do remain preserved even after theme updates.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Show Recent Posts with Thumbnail on HomepageHi B
can you share a link to your site for us to have a look?
Thanks