• Resolved mcbarkingspoon

    (@mcbarkingspoon)


    All I want to do is remove the title and catchphrase from in front of the logo so I can have a logo without the text, can anyone help?
    TIA

Viewing 12 replies - 1 through 12 (of 12 total)
  • Title and catchphrase of what logo? More info please.

    totally depends on the theme.
    a link to your site might help.
    can get done with css, rarely needs editing header.php.

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    https://socialcrime.com/
    See how the name is at the top, with the catchphrase?
    I did it before but had to reinstall my theme and now I can’t find the way to do it again. Hehe

    In the style.css file of your theme, you need to find .header-title. Change

    .header-title {
    	font-family: Tahoma, Verdana, Arial;
    	color:#dce8f4;
    	font-size:33px;
            font-weight:bold;
    	padding:123px 0px 0 368px;
    	text-align:left;
    	}

    to something like

    .header-title {
    	font-family: Tahoma, Verdana, Arial;
    	color:#dce8f4;
    	font-size:33px;
            font-weight:bold;
    	padding:50px 0px 0 368px;
    	text-align:left;
    	}

    You’re changing the ‘top’ padding property. The padding property works like this
    padding: [top] [right] [bottom] [left];
    Adjust it until you get the title where you want it.

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    Actually I want the title gone completely.

    Try:

    .header-title{
    display:none;}

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    Worked great after I did description too. Thanks!

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    Oh, even though it’s empty now, how can at least make the logo go to the home page when clicked?

    Change

    .header-title {
    display: none;
    }
    .header-title a {
    border-bottom:medium none;
    color:#DCE8F4;
    text-decoration:none;
    }
    .header-title a:hover {
    border-bottom:medium none;
    color:#DCE8F4;
    text-decoration:none;
    }

    to

    .header-title {
    text-indent:-9999px;
    }
    .header-title a {
    display:block;
    height:270px;
    width:370px;
    left:318px;
    position:relative;
    }

    and you should be good.

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    Well I mean, see the new logo?
    Is there a way that when anyone clicks the logo, it takes them back to the main part of the website?
    ??

    Yeah, the code I gave you here should do the trick. It worked when I tested it. Have you tried it yet?

    Thread Starter mcbarkingspoon

    (@mcbarkingspoon)

    OMG totally forgot about this, will do it later tonight and let you know.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Title and catchprahse.’ is closed to new replies.