Viewing 2 replies - 1 through 2 (of 2 total)
  • Did you happen to make any changes to the theme’s stylesheet? Does the theme have a Custom CSS option? How are you adding your modified CSS.

    Just as an aside, you shouldn’t be making changes directly to the theme’s files. If the theme gets updated because of feature enhancements, bug fixes, or security patches, then your changes will be lost. Instead, either create a child theme or use a CSS plugin like Jetpack or Custom CSS Manager. Or if the theme has a Custom CSS option, then use that.

    The problem is with this CSS rule in the light_skin.css file:

    #content .post_img {
      position: relative;
      display: block;
      width: 590px;
      height: 230px;
      margin: 0 auto;
      margin-bottom: 5px;
    }

    It seems kind of strange that the width and height of an anchor tag would be set, which is why I asked if you modified the theme files directly.

    You can override this rule by adding this either through a CSS plugin or through the theme’s Custom CSS option:

    #content .post_img {
      width: auto;
      height: auto;
    }

    Thread Starter AlphaSky

    (@alphasky)

    Thanks CrouchingBruin

    You are a legend – that fixed it. I haven’t set the template up as I purchased it, but your help has fixed it for me.

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image Covering Text’ is closed to new replies.