Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #41678

    On the home page of my blog most of the featured images do not have captions. However, when I post a single picture, the caption shows under the featured image. Is there any way not to show the caption on featured images?

    URL: http://2browndawgs.com/

    Thanks.

    #41693
    Sakin
    Keymaster

    Hello 2 Brown Dawgs Blog,

    I just check in your site Homepage and see that you have caption in image for article “Wordless Wednesday–Bringing The Greens” as this article doesn’t have any content and just a single image. So, the homepage take the the image as it is. If you have content on this page like your order posts then it will not show the caption.

    But still if you want to disable caption in the homepage then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content .wp-caption {
        background: none transparent;
        max-width: 100%;
        padding: 0;
    }
    .home #content .wp-caption .wp-caption-text {
        display: none;
    }
    #41703

    Yes thank you. That was exactly the issue and that CSS fixed the problem.

    Now if only I could figure out how to move the social icons in the header down to be more even with the logo. 🙂

    #41710
    Sakin
    Keymaster

    If you measure it. It is exactly aligned with your logo. It’s aligned top. But if you want to move it down then you can add the following css in “Appearance => Theme Options => Custom CSS” box. If you want it further down then you can increase the padding from 10px to 15px or more.

    @media screen and (min-width: 961px) {
        #sidebar-header-right .widget {
            padding-top: 10px;
        }
    }
    #41721

    Thank you that worked. I wanted to move it more in line with the bottom of the logo so I increased the padding quite a bit. I can also see I would not have figured this out by myself so thanks so much! I appreciate it.

    #41723
    Sakin
    Keymaster

    Yes, you can increase the padding as per your need. Cheers 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Featured Image Caption Question’ is closed to new replies.