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!
Nobody can help if you don't post a URL!
I would assume the font is set in your template config and is being written into the head.. a common technique...
So sorry..this is the URL:
http://eleganda.de/index.php/hochzeits-einladungen/classic-001-detail
Thank you and best regards!
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;
}
Amazing! Thank you very much!
Best regards!