Needed help for Wordpress Customization

I need to change fonts of one of wordpress blogs, can anyone please help me regarding it :(

site url : techbuy.in

just want to change the post fonts and title fonts to attractive one, the current one looks dull and small :(
 
Last edited:
Just change the font properties in your stylesheet (CSS).

P.S. The latest posts on this site are 2 years old. Remember you looking for freelance writers for this one. What happened?

P.S.S. The website's design looks dated. I'd suggest you to change the theme altogether.
 
Just change the font properties in your stylesheet (CSS).

P.S. The latest posts on this site are 2 years old. Remember you looking for freelance writers for this one. What happened?

didn't got any, but since now i am in 1 yr break, reviving all of my blogs :)

also, regarding fonts, i am unable to do it properly, so thought of taking someone else hands who is good at it
 
In:
themes/FreshlifeM/style.css
try different font styles for the following elements:

/* global */
body {
background: #e9e9e9;
font: 12px/18px Arial, Helvetica, Sans-serif;
color: #333;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
font-weight: bold;
}
h1 {
font-size: 22px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 15px;
}
h4 {
font-size: 13px;
}
h5,h6 {
font-size: 12px;
}


Similarily, look for styles for differnts Div/blocks and try setting different fonts/colors/weight.
These changes would reflect throught the site.
 
Back
Top