VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: bluMarmalade on August 24, 2016, 15:46:40 PM

Title: Make pictures centre aligned
Post by: bluMarmalade on August 24, 2016, 15:46:40 PM
VM 3,0,16/joomla 3.6.2

After I installed a new template, my pictures on my products are aligned to the left. I want them to be in the centre.
This is probably easy for any css familiar person, but I just don't remeber how to do it.
this is the site: www.seriemesteren.no (http://www.seriemesteren.no)
Title: Re: Make pictures centre aligned
Post by: GJC Web Design on August 24, 2016, 15:52:57 PM
.browseProductImage {
  margin: auto;
  max-width: 100%;
  width: auto;
}
Title: Re: Make pictures centre aligned
Post by: bluMarmalade on August 24, 2016, 16:12:47 PM
Thanks. I got it working. I inserted it in the template custom code box for css.