How to control the Logo position?

  • Author
    Posts
  • #101399

    I would like to left-position the logo in the header,
    as i could’nt find controls in the theme settings, i tried with extra CSS, but have problems finding the correct settings ( yes, i’m a bit rusty in CSS)
    The best result is with position:fixed, but it’s not pretty when scrolling, i hope you have better ideas?
    ——
    /* Roseta Custom CSS for logo position */
    a#logo {
    position:fixed;
    left:1%;
    top:1%;
    }
    ——
    http://www.eventur.dk/WPtest/ ( not in production yet)
    /Preben

    Website: www.eventur.dk/WPtest

    #101929
    Zed
    Cryout Creations mastermind

    You might want instead to try:

    a#logo {
        position: absolute;
        left: 1em;
        top: 1em;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #101948

    Thanks Zed, just what i need 🙂

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘How to control the Logo position?’ is closed to new replies.