• Resolved xmarekx

    (@xmarekx)


    Good evening guys,

    I need help with positioning my logo.

    I have a website http://www.anglickyzarok.cz and I need to put my logo a little bit upper than it is now. Can you help me what should I write to the CSS style?

    Thank you very much for your time. I will appreciate any help.

    Kind regards.

    Marek

Viewing 5 replies - 1 through 5 (of 5 total)
  • The code that affects the position is this on line 156 of screen.css

    div#logo {
    position: absolute;
    top: 9px;
    left: -2px;
    z-index: 4;
    }

    Therefore if you don’t already have a child theme or a custom.css you should install a plugin like custom CSS plugin then add the following to the custom css area.

    div#logo {
    top: 2px;
    }

    adjust the 2px accordingly

    Thread Starter xmarekx

    (@xmarekx)

    problem solved.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What was the solution if you don’t mind me asking?

    Thread Starter xmarekx

    (@xmarekx)

    The solution was as said salsaturation … go to CSS.style and there change parameteres of .logo to:

    .logo {
    float: left;
    position: absolute;
    top: -4px;

    and it is where I wanted

    Glad it’s solved – please don’t forget to mark the topic as resolved

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Logo position’ is closed to new replies.