hi,I'm new member. :)
I want to add a border around product.Anyone can help me.I use joomla 2.5,virtuemart 2 and my template.
You need to adjust CSS properties. Adjusting could be tested with the help of Firebug (FAQs in current forum section).
I tried:
index.php:
<div class="content-layout">
<jdoc:include type="component" />
</div>
template.css:
.content-layout
{
border:5px solid red;
}
but the border does not show
URL?
I found vmsite-ltr.css in ..\components\com_virtuemart\assets\css.
modify:
.product-price{margin:0 0 15px;}
to:
.product-price{margin:0 0 15px;border: 1px solid #00FF00;}
I get a border around the price :o
Congrats.