Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@friarpaul: Add the following CSS:
@media screen and (max-width: 990px) { .infinite-scroll #infinite-handle { margin-bottom: 20px; } }
Regards,
MaheshMahesh
Participant@friarpaul: Glad to know that you found the solution. Have a nice day!
Regards,
MaheshMahesh
Participant@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.php
add 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
Participant@friarpaul: Add the following CSS:
@media screen and (max-width: 767px) { promotion-message .section.right { padding-top: 0; } }
Regards,
MaheshMahesh
Participant@friarpaul: Please add the following CSS:
@media screen and (max-width: 767px) { #promotion-message .section.left, #promotion-message .section.right { max-width: 100%; } } #promotion-message .section.right { padding-top: 20px; }
Regards,
MaheshMahesh
Participant@contentchampion: Please hire a customizer for this.
Regards,
MaheshOctober 31, 2017 at 12:08 am in reply to: removing the entry header "home" only on front page #125181Mahesh
Participant@eddron: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/fotografie/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshOctober 30, 2017 at 6:25 am in reply to: removing the entry header "home" only on front page #125115Mahesh
Participant@eddron: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.page #main .entry-header { display: none; }
Regards,
MaheshOctober 30, 2017 at 12:10 am in reply to: removing the entry header "home" only on front page #125094Mahesh
Participant@friarpaul: Please add the following CSS:
#promotion-message .wrapper { padding-top: 0px; padding-bottom: 0px; } #promotion-message .right { float: right; max-width: 20%; text-align: center; } #promotion-message .left { max-width: 80%; float: left; width: auto; }
Regards,
MaheshMahesh
Participant@banno2000: The problem you are facing is featured image size is 16:9 and post thumbnail is 4:3. To overcome this issue you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s
functions.php
add the following code:function helena_archive_content_image() { $featured_image = apply_filters( 'helena_get_option', 'content_layout' ); if ( has_post_thumbnail() && 'full-content' != $featured_image ) { ?> <a class="post-thumbnail" aria-hidden="true" href="<?php echo esc_url( get_permalink() ); ?>"> <?php the_post_thumbnail( 'full', array( 'alt' => get_the_title() ) ); ?> </a> <?php } }
Regards,
MaheshMahesh
Participant@tcairus: Which theme are you using? Please let us know the theme you are using and its version.
Regards,
MaheshMahesh
Participant@3punkt5: Could you please clarify more. I don’t understand what your problem is.
Regards
MaheshMahesh
Participant@banno2000: Sorry for the late reply. You don’t need to upload it twice. You can crop image to 1170×658 and upload it. Theme will automatically generate another image size by cropping the same image. Have you tried that? If not, please try and let me know if any issue.
Regards,
MaheshMahesh
Participant@friarpaul: Please use the following CSS instead for second issue:
.catchadaptive-masonry #infinite-handle { bottom: 15px; position: absolute; text-align: center; top: auto; width: 100%; } .catchadaptive-masonry #main { position: relative; } #infinite-handle { text-align: center; position: unset; }
Regards,
MaheshMahesh
Participant@friarpaul: Add the following CSS:
#masthead { padding-bottom: 0; padding-top: 44px; } #masthead .wrapper { width: 100%; } @media screen and (min-width: 991px) { #masthead .wrapper { height: 214px; } }
Pagination navigation option
.catchadaptive-masonry #infinite-handle { bottom: 15px; position: absolute; text-align: center; top: auto; width: 100%; } #infinite-handle { text-align: center; }
Regards,
Mahesh -
AuthorPosts