How to change Font color , size

chinirmy

New Member
I am using Raphael theme
Notice most of the font is too small , not clear( grey colour)
How can i change the font and size?

The category, the about us text .. etc
Small font and light grey make it really difficult to identify clearly and reading challenges

Any way to configure the font easily without adding customize code
 

Christina

Administrator
I am using Raphael theme
Notice most of the font is too small , not clear( grey colour)
How can i change the font and size?

The category, the about us text .. etc
Small font and light grey make it really difficult to identify clearly and reading challenges

Any way to configure the font easily without adding customize code

Hello, chinirmy!

You can change the font and size in Raphael theme with the help of css only.
 

Direct Webstore

Well-Known Member
Try pasting these in Appearance>Customize>Additional CSS

Change the sizes and colors to whatever... experiment. :)

Menu Category titles

.categories-menu-line>li>a span {
font-size: 20px;
color: #000000
}


About Us Text

.abous_b1 p {
color: #000000;
font-size: 18px;
}


For others ... in Chrome browser, right click the text, then click "Inspect". A panel will pop out on the right with the CSS codes. Copy and paste them into "Additional CSS" and change the values as above.

Good luck! :)
 
Top