VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: jvmcode on September 16, 2013, 12:35:28 PM

Title: add borders to the product page
Post by: jvmcode on September 16, 2013, 12:35:28 PM
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.
Title: Re: add borders to the product page
Post by: Maxim Pishnyak on September 16, 2013, 17:04:37 PM
You need to adjust CSS properties. Adjusting could be tested with the help of Firebug (FAQs in current forum section).
Title: Re: add borders to the product page
Post by: jvmcode on September 17, 2013, 07:58:30 AM
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
Title: Re: add borders to the product page
Post by: Maxim Pishnyak on September 17, 2013, 10:52:26 AM
URL?
Title: Re: add borders to the product page
Post by: jvmcode on September 17, 2013, 13:33:06 PM
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
Title: Re: add borders to the product page
Post by: Maxim Pishnyak on September 17, 2013, 19:50:24 PM
Congrats.