Quote:
Originally Posted by totaltec
Rob,
It is easier to help when you link to the actual page.
It should be very easy to do, you just need to find a CSS selector that helps you isolate these specific images.
So if they are in a class like .special-offers you could write the CSS:
Code:
.special-offers img {
width: 32%;
height: auto;
margin: 0 auto;
}
|
I did get it sorted, sort of with this help
I wanted the image to be 100% width of the space it was providing, ie 33% for example, and used just
Code:
.special-offers img {
width: 100%;
}
as id didnt want this happen on all views, i found the code to set the media screen widths and was able to set my width for mobile aswell as browsers
but thanks for input, really helped
Rob