• Hi,

    I need to place two logos left and right of the site title, i.e. left and right of the paragraph which carries the class “site-title”.

    Can someone please assist?

    Kind regards,
    J?rn.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Kathryn Presner

    (@zoonini)

    @jgorres This is some basic CSS you can play with:

    
    /* Logo on the left*/
    .site-title {
      background: url(FULL-PATH-TO-YOUR-FILE);
      background-repeat: no-repeat;
      background-position: left;
    }
    /* Logo on the right*/
    .site-title {
      background: url(FULL-PATH-TO-YOUR-FILE);
      background-repeat: no-repeat;
      background-position: right;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten every time the theme is updated.

    An easy way to add custom CSS is to use the CSS editor included in the Customizer as of WordPress 4.7. Head to Appearance > Customize > Additional CSS to add your custom CSS.

    I tried that, and nothing happened.

    Moderator Kathryn Presner

    (@zoonini)

    @dgreenruf – if you need help with the site in your user profile – https://dgreenruf.wordpress.com/ – could you please contact WordPress.com support here: https://wordpress.com/help/contact

    These forums are for folks running the WordPress software on their own hosting; WordPress.com has its own system, and you have access to live chat and email support there.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘2 logos left and right of site title required’ is closed to new replies.