- This topic has 10 replies, 2 voices, and was last updated 4 years, 3 months ago by .
Viewing 11 posts - 1 through 11 (of 11 total)
Viewing 11 posts - 1 through 11 (of 11 total)
- You must be logged in to reply to this topic.
Support › Forums › Sunshine Pro Theme › Increase Font size in text and H*
Please we want to increase font size in the text and in title lik H1 H2 H3 H4, could you help us?
Many thanks in advance
1. Open style.css file of the theme.
2. Then edit font values in the following code.
h1 {
font-size: 36px;
font-size: 3.6rem;
}
h2 {
font-size: 30px;
font-size: 3rem;
}
h3 {
font-size: 24px;
font-size: 2.4rem;
}
h4 {
font-size: 20px;
font-size: 2rem;
}
h5 {
font-size: 18px;
font-size: 1.8rem;
}
h6 {
font-size: 16px;
font-size: 1.6rem;
}
Thanks a lot Singh, and for increase font size for normal text into the post how can i we do?
For that change font size in the following code
body {
color: #666;
font-family: Open Sans, sans-serif;
font-size: 15px;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.625;
margin: 0;
}
i try it but seems not working …
Share your website url
now is set so:
body {
color: #666;
font-family: Open Sans, sans-serif;
font-size: 20px;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.625;
margin: 0;
}
Change…
font-size: 20px;
font-size: 1.5rem;
to…
font-size: 20px;
font-size: 2rem;
done, but no variation
Change font size in the following code, appears at the top part of style.css file
/* Chrome fix */
body > div {
font-size: 1.5rem;
}
its work, done tks