- This topic has 7 replies, 2 voices, and was last updated 5 years, 2 months ago by .
Viewing 8 posts - 1 through 8 (of 8 total)
Viewing 8 posts - 1 through 8 (of 8 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Hyperlink colour
Tagged: hyperlink
Heya guys, how can I change the hyperlink colour (I want a more blue colour) for the hyperlinks in pages and posts? Whenever I try to change it, it also changes the navigation – which I don’t want blue. Thanks
For only changing hyperlink color for post and page content, use following class code before “media queries”
.single .entry-content a,
.page .entry-content a {
color: #000;
}
To target whole inner post / page, use following:
.content a {
color: #ccc;
}
Yay!! That worked thanks… can I also ask, how to change the font in pages and posts too? I want a more rounded font in a slightly bigger size – almost like the one used in this forum. Thanks again – you guys really rock!
You can target different font in these classes
.single .entry-content,
.page .entry-content
Notes:
1. Current body font on flex is Lato. Font used here on forum is Roboto (same font used for nav menu in Flex theme).
2. In place of thick title font ‘Anton’, you can try ‘Oswald’ for better read-ability.
Thanks heaps, I can’t find it – sorry I am new to this – where is it? I need to look at Anton too, as you are right its not great in some spots. But I like the bolder fonts for headings.
For different font, you can add code like to style.css file
.single .entry-content,
.page .entry-content {
font-family: Anton, sans-serif;
}
Refer – http://www.basicwp.com/add-google-fonts-genesis-theme/
Tip: To find more thick fonts, go here https://www.google.com/fonts and then use thickness slider on left side.
SUPER! I changed it to Roboto 😀
Looks cool !