• How can I center the image,

    I have tried added the below to the Additional CSS

    #header {
    text-align: center;
    }

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there,

    The best option here would really be to use a wider image.

    Dara recommends a custom header image of 1180px wide, but it looks like your current image is only 954px wide. If you edit this image and just make the white background wider on each side, that should have the desired effect.

    But if you’re not able to do that, you can also try this.

    The simplest CSS option is:

    .custom-header a img {
      width: 100%;
    }

    That stretches your image to be wider, and it also becomes a bit taller.

    If you don’t want it to stretch, try this instead:

    .custom-header a img {
      height: 291px;
      max-width: 954px;
      width: 100%;
      display: block;
      margin: auto;
    }
    .custom-header {
      background-color: white;
    }

    Hi!
    Hoy can I remove top left burger menu in desktop version?
    I only need it in mobile version, containing the main menu (I removed search and categories from widgets).

    I need a responsive menu like this (fixed in bottom right only in mobile):
    https://desparasitar.com/

    Can you help me, please?
    Thanks!

    @jesussegu

    Then theme you are using on your site is Astra and support for that theme will need to be posted here:

    https://wordpress.org/support/theme/astra/

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Center Header Image’ is closed to new replies.