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

How to change product h1 font

Started by VMRESLO, June 27, 2015, 15:52:01 PM

Previous topic - Next topic

VMRESLO

Hello everyone!

I know this is kind of absurd but I can not find any way to change the h1 font-family in product details pages. I have added/changed css code in my joomla template.css and vm-ltr-site.css as well but it allways gets overwritten to "Open Sans". Firebug doesn't help either as it gives me the url of the page for the source (it shows testing-detail (line 35)). I am kind of new to this so any help would be greatly appreciated.

I am using VirtueMart 3.0.6.2 on Joomla 3.4.1.

Best regards!

jenkinhill

Nobody can help if you don't post a URL!
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

GJC Web Design

I would assume the font is set in your template config and is being written into the head..  a common technique...
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

VMRESLO


GJC Web Design

as I said .. it is in the head so one has to assume it is in the template config or hard coded there

<style type="text/css">
         h1,h2,h3,h4,h5,h6,.site-title{
            font-family: 'Open Sans', sans-serif;
         }
      </style>

anyway  - just over ride it in any css file with

h1,h2,h3,h4,h5,h6,.site-title {
  font-family: Calibri,Arial,sans-serif !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

VMRESLO

Amazing! Thank you very much!

Best regards!