VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: cvrak on June 24, 2021, 18:10:27 PM

Title: CSS question
Post by: cvrak on June 24, 2021, 18:10:27 PM
Hi,

I try to customize the font size and the position of custom fields at category layout. The problem is that I change the price fonts as well, which i don;t want.
The URL of the page is https://www.dentalstock.gr/odontiatrika/2018-11-28-08-49-27 (https://www.dentalstock.gr/odontiatrika/2018-11-28-08-49-27) I need the custom fields to be aligned in the middle and to make font size smaller.
Which class I have to customize?

Thanks in advance
Chris

Joomla 3.9.25
VM 3.4.2
php 7.4.20
Title: Re: CSS question
Post by: GJC Web Design on June 24, 2021, 20:00:24 PM
.custom_field_C_container {
   text-align: center;
}

.custom_field_C_container span {
   font-size: 1rem !important;
}

Title: Re: CSS question
Post by: cvrak on June 25, 2021, 09:02:00 AM
Thanks a lot! It worked!!


Quote from: GJC Web Design on June 24, 2021, 20:00:24 PM
.custom_field_C_container {
   text-align: center;
}

.custom_field_C_container span {
   font-size: 1rem !important;
}