I need to change H1 and H2 to Georgia and specify the color. This doesn’t work.
this is what I have for CSS now. the H3 works fine. Here is the site. thank you!
h1, h2 {
color: #fa6d02 !important;
font-family: Georgia,Times,Times New Roman,serif;
}
h3 {
color: #40B8F7 !important;
font-family: Georgia,Times,Times New Roman,serif;
}
Hi gharding!
Which title are you trying to modify? A screenshot or a link to the actual page will help. Try to use the Special Heading element.
Regards,
Ismael
in this photo, https://www.dropbox.com/s/ahbvnei15ytp3g9/Screen%20Shot%202015-01-30%20at%201.51.40%20PM.png?dl=0
I mean these; just and h1 and h2 on the page
<H1>Click here to add your own text</h1>
<h2>more text h2</h2>
Hi!
Try to add a code block on top of the text block then add this:
<style type="text/css">
.avia-textblock h1, .avia_textblock h2 {
color: #fa6d02 !important;
font-family: Georgia,Times,Times New Roman,serif;
}
.avia_textblock h3 {
color: #40B8F7 !important;
font-family: Georgia,Times,Times New Roman,serif;
}
</style>
Regards,
Ismael
Hey!
Please add !important rule to Ismael’s code as following
<style type="text/css">
.avia-textblock h1, .avia_textblock h2 {
color: #fa6d02 !important;
font-family: Georgia,Times,Times New Roman,serif !important;
}
.avia_textblock h3 {
color: #40B8F7 !important;
font-family: Georgia,Times,Times New Roman,serif !important;
}
</style>
Best regards,
Yigit
Hi!
Please review your website now. I added !important rule to font-family for h1 and h2 tags in Quick CSS field
Best regards,
Yigit
that worked, thanks!!
g