How do I remove "Category: Archives" from title of my posts.

  • Unknown's avatar

    This is the first site that I have ever worked on, so I am not familiar with code at all. I have a feeling that this is gonna be a code issue. Is there any way to remove “Category: Archives” from the title of posts that have been categorized? Without code would be ideal, but I guess I’m gonna have to learn it sooner or later…

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, This can be done, but it requires the Custom Design Upgrade and a change to the CSS. You can try out the following change by going to Appearance > Custom Design in your dashboard and then in the CSS module at right, click on the “preview for free” button. Delete the informational text from the window and add the following CSS and you can preview the results.

    #content {
    position: relative;
    }
    
    #content .archive-title {
    visibility: hidden;
    }
    
    #content .archive-title span {
    visibility: visible;
    position: absolute;
    left: 15px;
    }

    I hope that helps and please let us know if you have any further questions.

  • Unknown's avatar

    Thanx for the help. I thought I was missing something… Guess that something was an upgrade. ‘Preciate the help.

  • Unknown's avatar

    You are very welcome.

  • The topic ‘How do I remove "Category: Archives" from title of my posts.’ is closed to new replies.