-
Closed
-
How can i change the post meta text color?
http://scorendejongens.nl/scorende-jongens/samenwerking-avvalphen/
The text below ‘Samenwerking AVV Alphen’
The topic Post meta text color is closed to new replies
How can i change the post meta text color?
http://scorendejongens.nl/scorende-jongens/samenwerking-avvalphen/
The text below ‘Samenwerking AVV Alphen’
Hi,
Please use the following in your Theme Options -> Custom CSS
.entry-meta.entry-header, .entry-meta.entry-header a {
color: #000 !important;
}
Thanks!
It doesn’t work, nothing changed
Hi,
Look at this portion of the code that you have entered in your custom css.
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait)
{
#wrapper .dd-container .dd-selected-text span:before {
position: relative;
top:0px;
padding: 0px;
margin: 0px;
content: "Menu";
}
.entry-meta.entry-header, .entry-meta.entry-header a {
color: #000;
}
It’s wrong. Your media query has opening bracket, but does not have closing bracket. You also did not use the !important rule that I provided in my reply.
It should be as follows.
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait){
#wrapper .dd-container .dd-selected-text span:before {
position: relative;
top:0px;
padding: 0px;
margin: 0px;
content: "Menu";
}
}
.entry-meta.entry-header, .entry-meta.entry-header a {
color: #000 !important;
}
There could be other errors in your custom css codes. Please check them.
Thanks!
Thank you so much! You’re an amazing moderator 🙂
But the same question below the post. How can i change that color? Sorry for the many questions
Hi,
Please use the following.
.nav-previous a, .nav-next a, .nav-previous .icon-arrow-left::before, .nav-next .icon-arrow-right::before {
color: #000 !important;
}
.entry-meta.entry-footer.row a {
color: #000 !important;
}
The top set of codes is for the prev and next posts.
The bottom set of codes is for your categories and sharing icons.
Thanks!
.entry-meta.entry-footer.row a {
color: #000 !important;
}
It works but after i delete the word ‘row’ above
The topic Post meta text color is closed to new replies