Imagery defaults to very small

Homepage Community Forums Epik Theme Support Imagery defaults to very small

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #15741
    shona
    Customer

      Hi all,

      I’m building a site for a client using Epik and you can find the hidden version at http://www.slogancreator.com.au/newsite.
      It would seem any images within tables are showing up very small even though they’re uploaded at normal size. Examples are:

      http://slogancreator.com.au/newsite/about/resources/
      http://slogancreator.com.au/newsite/testimonials/

      How can I set these images back to regular size?

      #15745
      scooby
      Customer

        Ok, the reason that’s happening is because you’re using tables….but we can create a “workaround” by changing or removing the img part on line 378 in your style.css –

        embed,
        iframe,
        img,
        object,
        video {
        	max-width: 100%;
        }

        I’m not sure how familiar you are with CSS so I’ll explain just in case. If you completely remove the img, from the code above then it will allow your images to show up at full width as you have it originally. So if you did that, the code would look like this as an end result –

        embed,
        iframe,
        object,
        video {
        	max-width: 100%;
        }

        I usually recommend NOT using tables, especially since they aren’t reliable, or compatible/consistent with every browser. It would be much better to use div‘s. After looking at your source code, I would definitely suggest using divs if you can, it’s much better for modern browsers that we’re using nowadays……Plus it’s much easier to deal with the code, and there is less conflict and issues when you’re adding code/images.

        #15746
        shona
        Customer

          Thanks very, very much for your fast and comprehensive reply scooby. You’re right about the tables and I would prefer to use DIVs for mobile-responsive means.
          I’ll look into that instead. 馃檪

          #15761
          scooby
          Customer

            Awesome! Happy to help 馃檪

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Imagery defaults to very small’ is closed to new replies.