Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How do i un-link the word 'Category', over on the side panel?

edited November 2011 in Vanilla 2.0 - 2.8

Over on the side menu in the category panel, how to i un-link the word Category?
Right now it's a link that takes you to a page with all the categories on it, but being a link make it the wrong color for my theme.

How do i make it so it's no longer a link?

Please be descriptive. I'm a PHP/CSS noob :P

Thanks
Tagged:

Best Answer

  • Options
    x00x00 MVP
    edited November 2011 Answer ✓
    you can simply style it differently. I actually did just that.
    div.Box h4 a, div.Box h4 a:hover {
    color: #FFFFFF;/*white*/
    cursor: default;
    text-decoration: none;
    }
    is that descriptive enough?

    grep is your friend.

Answers

  • Options
    x00x00 MVP
    edited November 2011 Answer ✓
    you can simply style it differently. I actually did just that.
    div.Box h4 a, div.Box h4 a:hover {
    color: #FFFFFF;/*white*/
    cursor: default;
    text-decoration: none;
    }
    is that descriptive enough?

    grep is your friend.

  • Options

    @x00 i inserted it into my custom theme CSS and it worked on the very first try! :D

    thank you so much!

Sign In or Register to comment.