Hi there,
how I could remove the dash on titles e.g: – Home –
You can use this for the widget titles:
.widget-title:before,
.widget-title:after {
content: "";
}
Just add it to your site from Customize > Additional CSS.
when adding widgets to the footer, how could I center the text written
You can do this a few ways. Generally, if you want all paragraphs centered, you can use this:
.textwidget p {
text-align: center;
}
Thank you David! The first bit of code for the titles worked!
But for centering the text in widgets didn’t. Can you please give me another option to change this?
On the website http://www.detimmerella.nl at the very bottom in the footer widgets, the text is not centered.
Ah, for some reason I assumed you were asking about Text Widgets specifically.
The META widget text can be centered with this:
.widget li {
text-align: center;
}
The email/password text in the Log In widget can be centered with this:
.widget label {
text-align: center;
}
If you want, you can combine the above codes into one:
.widget li, .widget label {
text-align: center;
}