-
AuthorPosts
-
December 22, 2014 at 1:53 pm #169124
Hi there,
I’m using the Integrity stack. I’m trying to change the sizes of h1, h2, h3, h4 and h5 to better suit my needs. What code do I need in order to do this?
December 23, 2014 at 1:07 am #169568Hey Derek,
Please add the code below in the Appearance > Customize > Custom > CSS to CSS
h1, .h1 { font-size: 6em; } h2, .h2 { font-size: 5em; } h3, .h3 { font-size: 4em; } h4, .h4 { font-size: 3em; } h5, .h5 { font-size: 2em; } h6, .h6 { font-size: 1em; }
For more CSS Properties, please see http://htmldog.com/reference/cssproperties/
Thanks.
December 30, 2014 at 3:06 pm #173699Thank you!
December 30, 2014 at 9:53 pm #173883You’re welcome Derek.
April 4, 2015 at 7:33 am #242067hm. this doesn’t work on my site. has that changed lately?
April 4, 2015 at 7:45 am #242073Hi @iturtle,
Would you mind providing me your website URL so I can take a closer look?
Many thanks.April 4, 2015 at 9:27 am #242110hi @Staff, thanks for your quick reply! please have a look here: http://seminarhaus-ohlenbusch.de/wpx the custom css h1, h2, etc. seems to be inactive. on “normal” pages I used the h2 looks like 4 feature which is great! but on the start-page (blog) the headlines are elephant size 😉
April 4, 2015 at 9:46 am #242117Hi There,
Please try to add !important; after the CSS, something like this:h1, .h1 { font-size: 3em !important; }
Hope it helps.
April 5, 2015 at 2:15 am #242378hi @Staff,
!important -> that sure helped!
thanks so much!
one happy x user 🙂 kaiApril 5, 2015 at 3:00 am #242396Glad we were able to help you 🙂
August 27, 2015 at 4:49 pm #371619Hi there, I’m trying to figure out the same thing. Adding !important doesn’t seem to work. through the browser inspector i can see this code that’s taking precedence
h1, h2, .h1, .h2 { font-size: 24px !important; }
Is there away to change this font size in Cornerstone or Customizer?
thanks
nicoAugust 27, 2015 at 10:11 pm #371840To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
February 21, 2016 at 3:15 am #805172This worked great for me:
h1 {font-size: 24px !important;}
Thanks all 🙂
February 21, 2016 at 5:24 pm #805817Happy to hear that.
Feel free to ask us again.
Have a great day! 🙂
-
AuthorPosts