Custom CSS problems
-
Hi!
I am having a bit of trouble with some CSS changes to the theme. My website is https://julieherold.dk/.
I have installed a plugin to add custom CSS and with some things it works really fine. And with other’s I can’t figure ut what the problem is…
I want my links to be the following colors:
a:link{
color: #FFB200;
}
a:visited{
color: #FFB200;
}
a:hover{
color: #FFB200;
}
a:active{
color: #FFFFFF;
}
a:hover{
color: #FFB200;
}
.post-edit-link {
color: #FFB200;
}
, and I have added all these lines to the CSS. But despite this, the visited links turn dark. How do I correct this?Also, I would like to change the previous and next buttons to have the translucent background, a yellow border and then maybe swap colors at hover (https://julieherold.dk/blog/2015/12/31/2015-2/)… Which code do I use? I have so far added this, which achieves some of what I want, but I can’t find the rest:
.nav-previous {
background: rgb(255, 255, 255) transparent;
background: rgba(255, 255, 255, 0.8);
border: 1px solid #ffb200;
}And then I wish the heading under the thumbnails in the widgets to be bigger. Where do I change this? The widget is a plugin called recent posts extended and it has a CSS feature built in, but changing text-size in that one doesn’t change anything. And the plugin for CSS should override anything anyway…
- The topic ‘Custom CSS problems’ is closed to new replies.