On my product page i have additional images that i have displaying. they are way off. i want them to be right next to eachother. Point in the right direction would be appreciated thank you
On my product page i have additional images that i have displaying. they are way off. i want them to be right next to eachother. Point in the right direction would be appreciated thank you
need to see your site for more help. but more often adjustment to any elements in your page can be done using your CSS .
I suggest installing firebug or developer tool bar for firefox browser and use one of those tools to find the correct css to fix your problem .
www.notoriousarc.com
ya i try using that but i only seem to be able to fix minor things. maybe im not using it right
This is an odd situation. The rules of CSS state that a stylesheet will override inline styling if !important is added to the property value, but that is not working in this case.
.additionalImages {width; 20em !important;}
does nothing in any location in the stylesheet, but
.additionalImages {margin: 0 -10%;}
will bring the additional images together. This could backfire if you have more than 3 of them, though, as the same amount of shrink applies; they could end up running into each other.
awsome! that did the trick. thank you![]()