(All my slides are in the section Showcase Slider)
As you can see with the ipad simulation (Capture 1), the h1 title is not centered anymore. And with the iPhone simulation (Capture 2) it doesn't work at all.
And I'm not sure that, in full screen mode the h1, title is parefectly centered.
Hi, Could you tell me how can I modify de size of the font h1?
I mean what is the CSS code I need to modify the size?
Where have I to put this code? In the Styling Options (in theme options -> styling options -> custom css)?
Thanks
Hello,
yes, theme options -> styling options -> custom css.
you can add for all h1 or depending on context. for example
if h1 is in a div
<div id="some_id">
...
<h1>...</h1>
...
</div>
you can add
#some_id h1{
font-size: 25px;
}
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
h1.big-title {
font-size: 100px;
}
is good then
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi,
I've tried with 80px in the theme option.
h1.big-title{
font-size: 80px;
}
But it give me some major problem with the responsivness of my page http://www.jeromedemeestere.com/curtain-slides-test/
(All my slides are in the section Showcase Slider)As you can see with the ipad simulation (Capture 1), the h1 title is not centered anymore. And with the iPhone simulation (Capture 2) it doesn't work at all.
And I'm not sure that, in full screen mode the h1, title is parefectly centered.
Thanks for your advice.
Yes, use media queries to control which screen widths the font size applies.
for example
@media screen and (min-width: 1024px) {
h1.big-title{
font-size: 80px;
}
}
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Great, it works. Thanks a lot.