Cutline Theme Support Forums » General

How to remove the blog title and tagline from Cutline

(6 posts)
  • Started 4 years ago by thethinktank
  • Latest reply from webseo67

  1. thethinktank
    Member

    I'd like to remove the blog title and tagline from the Cutline theme, and make the header image a link to the home page of my blog. In doing this, the "front page, archives, about" page links above the header image would actually be the top of the blog theme.

    Any thoughts on how to accomplish these two customizations?
    - Remove title and tagline from Cutline layout (but maintain meta title)
    - Set Cutline header image to a link that points home.

    Thanks! Hopefully other Cutline users will get use of this as well. :)

    Posted 4 years ago #
  2. 1. Find the code and delete it in the header.php document. No one probably had time to teach you basic html, but you should be able to figure it out.

    What do you mean maintain meta title? The title of the page the appears at the top of the web browser window?

    Here's my code to make my header link to my home page:

    <div id="masthead">
    <a href="<?php bloginfo('url'); ?>">A</a>
    </div>

    The letter A is only used to create a link. It is hidden with the following code, and this is also what adds the image. This is in your CSS style sheet:

    .custom #masthead {
    	float: left;
    	width: 970px; height: 100px;
    	background: url('/images/logo.gif')
    	no-repeat;
    }
    .custom #masthead a {
    	display: block;
    	width: 970px; height: 100px;
    	text-indent: -9000em;
    }

    First part adds the image, second styles your link to be the size of the image, and hides your letter A way out of the window. You will also want to add this to remove the dotted line stretching to the side in firefox browsers.

    .custom a { outline: none; /* kills mozilla link outlines */ }

    Study up: www.w3schools.com

    Posted 4 years ago #
  3. I just realized this is wrong for you. I didn't delete my masthead, I just changed it to an image instead of text. If you want those random images to link then all you need to do is wrap the code for the images with link tags to make them into links and then enter in your home page...

    This is all really basic html stuff.

    Posted 4 years ago #
  4. webseo67
    Member

    just realized this is wrong for you. I didn't delete my masthead, I just changed it to an image instead of text. If you want those random images to link then all you need to do is wrap the code for the images with link tags to make them into links and then enter in your home page...
    dermatology

    Posted 1 year ago #
  5. webseo67
    Member

    just realized this is wrong for you. I didn't delete my masthead, I just changed it to an image instead of text. If you want those random images to link then all you need to do is wrap the code for the images with link tags to make them into links and then enter in your home page...
    dermatology

    Posted 1 year ago #
  6. webseo67
    Member

    I just realized this is wrong for you. I didn't delete my masthead, I just changed it to an image instead of text. If you want those random images to link then all you need to do is wrap the code for the images with link tags to make them into links and then enter in your home page... beauty tips

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.