• queenbar

    (@queenbar)


    hello
    does anybody know how to remove the link on the header.When i ckick it it sends me back to the homepage and it looks like a black smudge on the header pic.My theme is mt-dark and website is https://www.queenbar.co.il

    thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator cubecolour

    (@numeeja)

    The quick & dirty way:

    look in your theme’s style.css

    Find
    /************Header************/

    scroll down to

    #header h1 a, #header h2 a {

    look for

    display: inline;

    & change inline to none

    Thread Starter queenbar

    (@queenbar)

    it worked!
    thank you so much, ive been working on it for hours today

    Thread Starter queenbar

    (@queenbar)

    why did the menu move up?

    Moderator cubecolour

    (@numeeja)

    mmmm – it does a bit doesn’t it – that’ll probably be because the position depends on the empty heading

    OK try this instead – same block of css as before:

    replace

    #header h1 a, #header h2 a {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -khtml-border-radius: 5px;
        border-radius: 5px;
        -moz-box-shadow: 0 0 5px #501F0E;
        -webkit-box-shadow: 0 0 5px #501F0E;
        box-shadow: 0 0 5px #501F0E;
        background: #0C0401;
        display: inline;
    }

    with

    #header h1 a, #header h2 a {
        background: none;
        display: inline;
    }

    is that any better?

    Thread Starter queenbar

    (@queenbar)

    now it worked

    thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove header link’ is closed to new replies.