• Resolved detimmerella

    (@detimmerella)


    Hi guys! Im new to this forum but not with wordpress.

    But I still have a question regarding this theme.
    I was wondering how I could remove the dash on titles e.g: – Home –

    Also when adding widgets to the footer, how could I center the text written?

    The website is https://www.detimmerella.nl

    Thank you!

    • This topic was modified 7 years, 8 months ago by detimmerella.
Viewing 4 replies - 1 through 4 (of 4 total)
  • 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;
    }
    Thread Starter detimmerella

    (@detimmerella)

    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 https://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;
    }
    Thread Starter detimmerella

    (@detimmerella)

    Thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing and centering’ is closed to new replies.