News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

CSS question

Started by cvrak, June 24, 2021, 18:10:27 PM

Previous topic - Next topic

cvrak

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 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

GJC Web Design

.custom_field_C_container {
   text-align: center;
}

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

GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

cvrak

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;
}