
Originally Posted by
bromleysid
Hi Thank you.
Im trying to figure out how to remove the spaces between the price and title lookign for the <br>s, which file is it in?
i know i'm quoting a super old post, but i ran into this too and thought i would share my way around it. no idea if it's the best way to go, but it worked for me, and i did it all in css.
first i added a new line in my css-
Code:
.centerBoxContentsProducts br{
display:none;
}
that got rid of all the brakes, but made the other bits in the class=centerBoxContentsProducts line up.
however, lucky for me, all of the fields in the center box have their own classes, so it was just a matter of making a second entry in my css file-
Code:
.normalprice,.productSalePrice,.etcetera{
display:block;
}
and it all behaved how i wanted, no extra spaces between lines.
i'm pretty new to all of this though, there may very well be a better way to go around it. i just wanted a way to do it without going into the php.
see it in action here if you like-dellortodirect.com
Bookmarks