Hi,
How do you change font size and style throughout the site?
Ie: Posts/Pages/Menu/footer etc etc
Regards
Glenn
Hi,
How do you change font size and style throughout the site?
Ie: Posts/Pages/Menu/footer etc etc
Regards
Glenn
Hi Glenn,
to change the menu font you need to make changes in this code in style.css:
.topmenu .dropdown {
width: 100%;
float: left;
font-family: 'edelsansRegular', Arial, Helvetica, sans-serif;
font-size: 12px;
text-transform: uppercase;
line-height: 1.1em;
color: white;
z-index: 1300;
margin: 0;
padding: 0;
}
To change the font in post title make changes in this code:
.post-item h1, .post-item h2 {
font-family: 'edelsansRegular', Arial, Helvetica, sans-serif;
line-height: 1.6em;
margin: 0px;
}
.post-item h2 a {
color: #262626;
font-size: 30px;
}
To change the font in post preview make changes in this code:
.entry {
color: #404040;
line-height: 1.5em;
font-size: 15px;
font-family: "Times New Roman", Times, serif;
}
To change single post page title:
.text h1, .box h1, .col_1 h1 {
margin: 15px 0 20px;
font-size: 26px;
}
.text {
line-height: 1.5em;
font-size: 14px;
font-family: "Times New Roman", Times, serif;
color: #404040;
}
Chances are your issue is already answered, but if it’s not, you can always create a new topic.
Add new topicSearching for something specific? Type something and press Enter to search.
Add Reply
You must log in to post.