Why is the links in post turn grey?
-
i want them dark grey all the time, but when they are clicked on they become light grey… almost invincible :(
The blog I need help with is: (visible only to logged in users)
-
Howdy superjanne,
Does this accomplish what you want for your visited links?
.entry-content a:visited { color: #000014; } -
-
If I look at a post with a link, click on it and then return to the post, the visited link is no longer light grey.
Do you want visited links in other areas of your blog to be colored #000014 as well? Your subject line only mentioned posts.
-
why can’t the links have the same color before and after visit? but hoover is another color. thats what i want
Yes that will be also fine in other areas. :D tnx. -
Instead of using the CSS I mentioned earlier, you could use the following to make all links the same color and include an a:hover to change the color on a mouse over (change the color to whatever your preference).
a:visited { color: #000014 !important; } a:hover { color: green !important } -
-
Ps. do you have the codes to get bigger fonts on header name and over top of each post also?
i am also trying to get superjanne.no to look the same as .me, but that is an .org blogg. i dont now if i can fix that, very difficult :/
-
-
You no longer have the following CSS, so things will remain light grey.
.entry-content a:visited { color: #000014; } a:visited { color: #000014 !important; }You can make some post titles larger, but you do run the risk of it wrapping on to other lines if you have a long title.
.entry-title a { font-size: 1.5em; }Here’s the header text:
.site-header h1 a { font-size: 1.75em; } -
- The topic ‘Why is the links in post turn grey?’ is closed to new replies.