Hello !
I would like to make my links underlined automatically in my blog posts. I tried many CSS changes in the back office, but with no results. I already have a quick CSS and i realized that only the last quick CSS is working on my website. How could i change that ? In wich folder ? Thanks !
my blog : http://www.remarqbl.fr/blog
Hi jedasim!
The opening body rule in your Quick CSS doesn’t have a closing bracket. It needs one in order for the css after it to get recognized. Make sure its:
body {
font-size: 16px;
}
Then you can force the underline for text-decoration in your content areas with:
.entry-content a {
text-decoration: underline !important;
}
Best regards,
Devin
Hello and thank you! But your tips does not work… This is my quick CSS : (only the first is working, others – for example the size of the phone number- are not taken into account).. I dont know what to do?
body {
font-size: 16px;
}
#header_meta {
min-height: 35px;
}
.entry-content a {
text-decoration: underline !important;
}
a {
color: #485edb;
text-decoration: underline;
} .
.social_header .phone-info span {
padding: 0;
margin: 0;
font-size: 18px
}
Hi!
Please remove the dot right after following code
a {
color: #485edb;
text-decoration: underline;
}
Best regards,
Yigit
Thanks ! It works !!