Title Font Size
Quote from Will on January 22, 2018, 5:43 pmHey,
I was wondering how would i change the font size of a title? https://gyazo.com/cbf054bd9d0a2824602cc4bce338708a
If its like more than 5 words its too much.
Thanks!
Hey,
I was wondering how would i change the font size of a title? https://gyazo.com/cbf054bd9d0a2824602cc4bce338708a
If its like more than 5 words its too much.
Thanks!
Quote from Yworld on January 22, 2018, 5:45 pmHi Will,
#af-wrapper .main-title { font-size: 20px; border: none; margin: 10px 0; font-weight: normal; color: #444; }
Hi Will,
#af-wrapper .main-title {
font-size: 20px;
border: none;
margin: 10px 0;
font-weight: normal;
color: #444;
}
Quote from Will on January 22, 2018, 5:52 pmHow would I go about finding where to make that change? I’m not sure where the CSS is located.
How would I go about finding where to make that change? I’m not sure where the CSS is located.
Quote from Asgaros on January 23, 2018, 6:30 pmHello Will,
I think the best way would be to add this css-code to your themes style.css-file. You can do this in the Appearance -> Editor-section in the WordPress-backend. Otherwise plugin-updates will overwrite those modifications.
Hello Will,
I think the best way would be to add this css-code to your themes style.css-file. You can do this in the Appearance -> Editor-section in the WordPress-backend. Otherwise plugin-updates will overwrite those modifications.
Quote from Will on January 28, 2018, 3:33 amWe located
- #af-wrapper .main-title {
- font-size: 20px;
- border: none;
- margin: 10px 0;
- font-weight: normal;
- color: #444;
- }
and it said the font size was 20, we check the page in question and it says font size 72 so im not sure what part is where it gets the 72 size from.
We located
- #af-wrapper .main-title {
- font-size: 20px;
- border: none;
- margin: 10px 0;
- font-weight: normal;
- color: #444;
- }
and it said the font size was 20, we check the page in question and it says font size 72 so im not sure what part is where it gets the 72 size from.
Quote from Asgaros on January 28, 2018, 11:37 amYes, it seems your used WordPress theme is overwriting the css-rules of the forum. You can try to add the following css to your themes style.css-file. Maybe it helps:
#af-wrapper .main-title { font-size: 20px !important; }
Yes, it seems your used WordPress theme is overwriting the css-rules of the forum. You can try to add the following css to your themes style.css-file. Maybe it helps:
#af-wrapper .main-title {
font-size: 20px !important;
}
