Image issues in different browsers

by 3 replies
4
The book image in the bottom half of this homepage has a large gray square around in when browsing in Crome. When browsing in Internet Explorer the image looks great and background appears to be transparent. Any suggestions?


productauthor.com
#website design #browsers #image #issues
  • You have this in the style.css at line 290:
    Code:
    .entry img, img.thumbnail {
    padding: 5px;
    border: 1px solid #e6e6e6;
    background: #F8F8F8;
    }
    Change background: to "#fff" or "none" or remove it.

    I noticed you also have a custom.css, so add your change to that stylesheet not the style.css and it should override it.
    Looks like your theme has the custom.css just for that reason.

    You already did add the .entry img there, so just add a new background property to override the default.
    Code:
    .entry img, img.thumbnail {
    border: none;
    background: none;
    }
    • [ 1 ] Thanks
  • Hello Friends,

    Thanks for sharing your suggestion.
    • [1] reply
    • Replace the first 'with' in "We only want to provide with with..." with a 'you'.

Next Topics on Trending Feed