VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: rvhattum on September 28, 2012, 18:45:36 PM

Title: I am lost...
Post by: rvhattum on September 28, 2012, 18:45:36 PM
Hi all,

I am customizing an template for the Product Page and i don't know how i can do something.

First of all this is the site:
http://test1.onobo.nl/index.php/maakbestel/webshop/onobo-city-strap/onobo-city-strap-hooked-detail

If you press a button you can select an color. The color is placed in the layout under the button when you close the popup. But i want the color besides the button. Can somebody help me with this? I appreciate your help!

Regards,
Ralf

This is the php file (i have bolded the lines that i think they need to be changed, but how?):

<Removed the code>
Title: Re: I am lost...
Post by: SamF on September 28, 2012, 19:48:59 PM
The rule could look like this:

div#inline_content_a_colImg img  {
    position: relative;
    left: 200px;
   top: -35px;}


Since you have variable #inline_content_...., either you have to list all the rules, or define inline style for img tag.

Title: Re: I am lost...
Post by: rvhattum on September 28, 2012, 21:50:31 PM
It was easier than i thought it was. It was just an adjustment in de css file.

Thanks SamF for your reply!