Spun theme- getting rid of 'Category Archives'

  • Unknown's avatar

    Hi all,

    I’ve just switched to the lovely Spun theme. My one gripe with it is that I want to remove the ‘category archive’ text from the category pages (but keeping the name of the category itself) Ie. Category Archive: painting (I just want it to say painting).

    Is there a way to do this? As a long shot I tried lifting some css from another theme but it didn’t work.

    Also I would love to be able to shrink the text slightly inside the circles (that tell you what the categories are and titles of the posts) if that’s possible and the option to change the font colour to black.

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

  • Unknown's avatar

    Hi there, try the following and see what you think. It takes away the grey circle and keeps the category title.

    .archive .page-header h1 span {
        color: #444444;
    }
    
    .archive .page-header h1 {
        background: none;
    }

    If you want to keep the grey disk and the title, but hide “category” then add the following instead.

    .archive .page-title {
        color: #444444;
    }

    To change the text height of the title names and change them to black, add the following and edit as desired.

    .wf-active .page-header h1 span {
        color: #000000;
        font-size: 25px;
    }
  • Unknown's avatar

    Thanks so much- it works a treat!

  • The topic ‘Spun theme- getting rid of 'Category Archives'’ is closed to new replies.