Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@isbiengood: Please post in your site url. Do you have any plugin installed? If yes, try disabling them and check if that solves your issue. Let me know further.
Regards,
MaheshMahesh
Member@skynet: Please add the following CSS:
#menu-toggle-primary .mobile-menu-text { font-weight: bold; }Regards,
MaheshNovember 19, 2017 at 10:21 pm in reply to: Remove title from Featured Content on home page / font change? #126384Mahesh
Member@ionadmin: Thank you for your appreciation. Glad to know it worked for you.
Regards,
MaheshMahesh
Member@noahf1993: Please post in your site url.
Regards,
MaheshNovember 19, 2017 at 12:30 am in reply to: Remove title from Featured Content on home page / font change? #126342Mahesh
Member@ionadmin: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#featured-content-section .entry-header { display: none; }Customizing font on ECT pages is possible with Custom CSS.
Regards,
MaheshNovember 19, 2017 at 12:26 am in reply to: Where do I find stylesheet link in the theme's PHP? #126340Mahesh
Member@benjbrandall: Do you have any plugin installed? If yes, please disable it and check if that resolves the issue. Let me know further.
Regards,
MaheshMahesh
Member@skynet: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#access ul.menu a { font-weight: bold; }Regards,
MaheshMahesh
Member@coachboone73: For hiding title on homepage only, add the following CSS:
.home #main .entry-header { display: none; }For moving the titles above images, I recommend you to hire a customizer.
Regards,
MaheshMahesh
Member@banno2000: I checked your website. Now the image are displaying correctly. Let me know if any problem.
Regards,
MaheshMahesh
Member@coachboone73: The title is not displaying because of the following CSS:
.entry-header { display: none; }Please find and remove it.
To align the image to the center, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS.
#featured-content .featured-homepage-image { text-align: center; }Regards,
MaheshMahesh
Member@costantino: This option is available in Pro version. I recommend you to upgrade to Pro.
https://catchthemes.com/themes/fotografie-pro/Regards,
MaheshMahesh
Member@banno2000: Please check the screenshot in the link below:
http://bit.ly/2lIEHr0
This is how its displaying as I check your website.Regards,
MaheshMahesh
Member@banno2000: Just checked your site and the image is displaying fine, the uncropped image.
Regards,
MaheshMahesh
Member@friarpaul: Add the following CSS:
@media screen and (max-width: 990px) { .infinite-scroll #infinite-handle { margin-bottom: 20px; } }Regards,
MaheshMahesh
Member@friarpaul: Glad to know that you found the solution. Have a nice day!
Regards,
MaheshMahesh
Member@pex81: For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.phpadd the following codes:function rock_star_archive_content_image() { $options = rock_star_get_theme_options(); $content_layout = $options['content_layout']; $archive_top_layout = $options['archive_top_layout']; if ( has_post_thumbnail() && 'full-content' != $content_layout ) { ?> <figure class="featured-image"> <a rel="bookmark" href="<?php the_permalink(); ?>"> <?php if ( 'excerpt-image-left' == $content_layout || 'excerpt-image-right' == $content_layout ) { the_post_thumbnail( 'rock-star-landscape' ); } elseif ( 'excerpt-image-top' == $content_layout ) { if ( 'one-column' == $archive_top_layout ) { the_post_thumbnail( 'full' ); } else { the_post_thumbnail( 'full' ); } } ?> </a> </figure> <?php } }Regards,
MaheshMahesh
Member@friarpaul: Add the following CSS:
@media screen and (max-width: 767px) { promotion-message .section.right { padding-top: 0; } }Regards,
Mahesh -
AuthorPosts
