• Resolved chrisfiddes

    (@chrisfiddes)


    Hi,
    I’m trying to make the banner image clickable, completely hide the blog title, and keep the description positioned in the right place. Here are my current header styles:
    #header h1 {
    display: none;
    margin: 0;
    font-size: 1.8em;
    padding-top: 130px;
    font-family: "Georgia";
    }
    #header h1 a {
    text-decoration: none;
    color: #80904F;
    }

    The header is hidden, but the description is no longer padded and in the right place! The description should be 130px down from the top. Please help me! Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you look at the source you’ll see something like this:
    <div class="description">Lighthearted whim...
    which means you should define and style the .description class in your css file.

    Thread Starter chrisfiddes

    (@chrisfiddes)

    I searched my style.css file, but I can’t find “.description” at all! Am I looking in the right place for it?

    Many themes don’t have a lot of classes that are available in the WP code. You just have to make it.
    .description {
    xxxx;
    xxx;
    }

    Thread Starter chrisfiddes

    (@chrisfiddes)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Title and Position Description’ is closed to new replies.