Support › Forums › Flex Theme › Make H1, H2 and H3 tags bold › Reply To: Make H1, H2 and H3 tags bold
October 22, 2015 at 3:08 am
#610
Moderator
In your style.css file:
Change this code
/* ## Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
color: #444;
font-family: "Roboto", sans-serif;
font-weight: 300;
line-height: 1.2;
margin: 0 0 10px;
position: relative;
}
to…
/* ## Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
color: #444;
font-family: "Roboto", sans-serif;
font-weight: 700;
line-height: 1.2;
margin: 0 0 10px;
position: relative;
}
P.S. Basically changing font-weight from 300 to 700