-
AuthorPosts
-
January 10, 2014 at 12:51 pm #4673
Hey there,
Great support btw, tnx. One more question:
Is there any place I can decrease the font size of the H1,H2 and H3 headers?
tnx in advance
January 10, 2014 at 12:59 pm #4675Hey Pieter,
go to the Customizer > Custom > CSS and add following values and change the px value to your needs.
h1, .h1 { font-size: 30px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 30px; } h4, .h4 { font-size: 30px; } h5, .h5 { font-size: 30px; }
January 12, 2014 at 6:46 am #5079cheers, that worked
January 12, 2014 at 8:59 am #5098Hey Pieter,
Awesome! If you need anything else let me know.
February 27, 2014 at 1:26 pm #18646This reply has been marked as private.February 27, 2014 at 3:25 pm #18694Hey Drake,
the reason why the custom css is not working is because those titles have inline style which is overwriting the custom CSS. When you go into the edit mode of that page you can see the headline shortcode and the statement: style=”font-size: 54px;” or if you’re using Visual Composer when you edit the headline and scroll to the Style textfield you will see font-size: 54px; – simply change the px value to achieve a smaller font.
February 27, 2014 at 4:27 pm #18705This reply has been marked as private.February 27, 2014 at 6:36 pm #18723This reply has been marked as private.February 28, 2014 at 3:35 am #18793Hey Drake,
switch to Text mode and then you will see something like:
<h3>Video Production</h3>
change it to<h3 style="font-size:20px;">Video Production New</h3>
March 1, 2014 at 5:49 pm #19254Holdup… We just built our entire site with H1/2/3 tags, just like normal.. within site builder. I did not do any special coding, just normal h1/2/3 tags. I am not about to recode all <h3> tags to <h3 style=”font-size:20px;”> tags.
Please tell me how I can reduce the size of the tags themselves. Since I am only using <h3> tags, why does this custom CSS not work…
h3, .h3 { font-size: 30px; }
March 1, 2014 at 8:05 pm #19275Hey Drake,
Try appending the !important selector to the end of your CSS like so (you might even try adding the body element before it):
body h3, body .h3 { font-size: 30px !important; }
Thanks!
March 10, 2014 at 2:46 pm #22053That worked! Thank you for the help! That was my only issue with the theme. LOVE X. By far the best theme we have ever used. Keep up the outstanding work!
March 10, 2014 at 4:14 pm #22080Thank you so much for the nice words! We really appreciate this.
-
AuthorPosts