• Resolved hyunbass

    (@hyunbass)


    Hello WP. I have a simple but irritating problem I can not solve.

    As seen on the image, I want to have my website title not show. But still be able to click the whole header which will redirect to my website.

    On #1 of my image, there is a place where I have to type my website title which is actually going to show on my header. But I was wondering if there is anyway I can hide that title (not show on my header).

    Also It would be nice if I could just click the header to redirect to Home.

    I think I have to go to index but do not know where to look or how to code it the way I want it.

    Please help me out guys.

    Thanks
    Hyun Bass
    https://www.hyunbass.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter hyunbass

    (@hyunbass)

    please help ;(

    Open your style.css file and change:

    h1#blog-title {
    	float: left;
    	margin: 50px 10px 0 0;
    	padding: 0px;
    	font-size: 18px;
    }

    to:

    h1#blog-title {
    	float: left;
    	margin: 50px 10px 0 0;
    	padding: 0px;
    	font-size: 18px;
            text-indent:-9999px;
            overflow:hidden;
    }

    You will then want to put your blog’s title back in the settings.

    Thread Starter hyunbass

    (@hyunbass)

    thank you so much. It worked very well.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Website Header’ is closed to new replies.