CSS editing in Argent theme

  • Unknown's avatar

    How can I completely remove the black box that appears over the header image in the Argent theme? I’m not experienced in CSS editing. :(

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, I’m not seeing a black box over the header image. Can you explain a bit further what you mean?

  • Unknown's avatar

    Sorry, I was looking at your site, which is using Reddle, rather than looking at the demo site for Argent.

    Are you talking about hiding box and the site title, or just the border around the site title?

    To hide just the border, go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

    .site-title {
        border: none;
    }

    To hide the site title and the box, use the following.

    .site-title {
        visibility: hidden;
    }
  • The topic ‘CSS editing in Argent theme’ is closed to new replies.