• Resolved speed2011

    (@speed2011)


    Hi,

    I have settled on the snippet to and an image instead of the tagline.

    Question: how do I remove the tagline from my main page but still keep in in the browser title bar?

    Site Link

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • What about adding this?

    h2.site-description,
    .navbar-wrapper .navbar h2{
    visibility:hidden;
    }
    h2.site-description > img,
    .navbar-wrapper .navbar h2 > img {
    visibility: visible;
    }
    Thread Starter speed2011

    (@speed2011)

    d4z_c0nf, as always thanks for your help.

    That code hid the tagline but did not shift the image up. So the only other thing I did was to make the tagline font 0px and that moved the image up nicely.

    Have you tried setting the tagline to {display:none} in the CSS instead? That should clear the space up for you

    h2.site-description,
    .navbar-wrapper .navbar h2{
    display:none;
    }

    @speed2011 good solution ?? , glad you solved .

    Thread Starter speed2011

    (@speed2011)

    d4z_c0nf, Thanks!

    PH, that code does now work unfortunately. It gets rid of my image as well. The font 0px seems to be a good resolution.

    Yep, ’cause your image is in that h2 tag, that’s why you cannot not display it and display the image at the same time.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Tagline but keep in browser title bar’ is closed to new replies.