• I am a WordPress beginner. I paid someone to design the site and then I took over the management of it. I have a featured image in my blog (see http://www.tylerslight.com) that is a registration button. When the user clicks on the image, it takes them to another site for registration. Although this is working correctly, you will notice that the entire graphic does not display. The last few lines are not displaying and (in some browsers I get a shaded area). Where is this controlled? How can I fix this so the entire graphic displays?

    Thanks.
    Tom

Viewing 6 replies - 1 through 6 (of 6 total)
  • I took a look and I’m not sure what image you are talking about. Is it on the frontpage? I’m seeing a slider with videos in it. I’m using Chrome.

    Thread Starter tblaies

    (@tblaies)

    It is on the front page. One graphic is a video and it shows up fine. The other is a BMP image that reads “Register Now”. The “slider control” (not sure if that is the correct name) is covering up the last couple of lines of image.

    Do you use a plugin called anything-slider?

    If so, you probably have a call such as

    <?php echo do_shortcode( "[anything_slides]" ); ?>

    in your theme. And replacing [anything_slides] with [anything_slides height=XX] where XX is close to 445 (445px being the height of your registration image) might be enough.

    Thread Starter tblaies

    (@tblaies)

    THANK YOU Sandra. I don’t have anything_slides listed in my plugins but, when I went to edit my theme and found the section that called “featured Slider”. I edited the div.anythingSlider li.feature_img and changes the height to 445 and it worked!
    I also had the make the same height adjustment on the div.anythingSlider . anythingWindow …

    thanks for all your help!

    Thread Starter tblaies

    (@tblaies)

    One more thing — Sandra’s comments helped and everything looks good in IE and Firefox but Chrome still has issues.
    The graphic basically still is not completely showing AND there is a grey bar about 3/4 from the bottom (basically the same as the navigation bar). Any ideas??

    Thanks!

    graphical_force

    (@graphical_force)

    Change this in your css:

    #homeslider {
    float: left;
    display: inline-block;
    width: 640px;
    height: 488px;
    overflow: hidden;
    }

    The height is what you want to tweak to create the space for your slider. It is to tall for the container that it is in so it is getting cut off.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Featured Image not displaying correctly’ is closed to new replies.