• Resolved Shady319

    (@shady319)


    I have been searching for hours on how to remove “Category Archives :” from the heading.

    Any help on where to edit would be great.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Tareq

    (@worthingtech)

    Do you have a link to your site please?

    Thread Starter Shady319

    (@shady319)

    Tareq

    (@worthingtech)

    You can do this with CSS – hacking the core PHP will take me a little longer (and is discouraged).

    .article-header {
        visibility: hidden;
    }
    
    .article-header span {
        visibility: visible;
    }
    Thread Starter Shady319

    (@shady319)

    Excuse my ignorance please –

    Where exactly do I pit this at? I understand in the CSS file of the color scheme I am using but I did add that and it didn’t do anything. Is there a certain area I should add it to?

    Before adding it I did a search for .article-header just to see if that was in there, and it was not, not sure if that is normal.

    Thank you.

    Tareq

    (@worthingtech)

    Go to:

    Appearance -> Customise and at the bottom of the left sidebar is a Custom CSS option, click on that and put the snippet in there, save it. Go back to your site and refresh.

    Thread Starter Shady319

    (@shady319)

    Alright, not sure why I was thinking the actual CSS file.

    Anyway, did as I was told but yet the problem is still there. Do you have any other suggestions?

    Tareq

    (@worthingtech)

    It’s cool, anyone would guess it’s the CSS file you’d put it in but if there is a dedicated box that’s usually where it should go (it appends your styles like a child theme so you don’t lose styles when your theme gets updated).

    I know that the various color based CSS files literally only contain colors, so try putting the previous mentioned snippet into your main style.css in your main Theme Directory – I’d strongly recommend creating a child theme if possible though. Alternatively, you could get a decent plugin to make it for you! Orbisius is a good one and it allows you to edit the CSS from your Dashboard too!

    Screenshot

    Have a look at the screenshot -> on the right at the bottom I have added the custom styles and the page displays the live CSS edit. The only other thing I’ve added that I haven’t mentioned prior is the float: left; .

    Thread Starter Shady319

    (@shady319)

    Alright I did everything that was said above. I added it to the style.css and checked it out, and nothing changed.

    The main CSS file, style.css, doesn’t have much to it:

    /**
     * Theme Name: Customizr
     * Theme URI: http://www.themesandco.com/customizr
     * Description:  Enjoy designing a beautiful website live with the WP customizer : select skin, logo, social profiles, sliders, layout, home featured blocks, or even live css styling. The flat and fully responsive design can be used for small businesses, portfolios, blogs, corporate sites or landing pages. Built with valid HTML5 and CSS3 (from the Twitter Bootstrap), cross-browser tested, the theme is translation ready and available in 15 languages. Ready for WooCommerce, bbPress, qTranslate, the code is easily extensible with a comprehensive API of hooks.
     * Version: 3.1.6
     * Author: nikeo
     * Author URI: http://www.themesandco.com/
     * Tags: gray, white, light, blue, red, yellow, green, purple, orange, black, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fluid-layout, responsive-layout, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post, post-formats, rtl-language-support, editor-style
     * Text Domain: customizr
     * Copyright: (c) 2013 Nicolas GUILLAUME (nikeo), Nice, France
     * License: GNU General Public License v2.0 or later
     * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     */
    
    /**
     * The styleheets of Customizr are located in inc/css. Each skin has its own stylesheet : blue.css, green.css, ...
     *
     * IMPORTANT : If you write your CSS code below, it will be deleted when you'll update the theme.
     * If you want to style the css of Customizr, you can either use the Custom CSS section in the customizer (which will not be lost on update) OR create a child theme (recommended if you do many customizations) and add your css code in the style.css file of it.
     */

    So wasn’t too sure where to go after reading that, so I just put the snippet after that.

    You could start again using this snippet

    You will need to understand Child Theme as it involves the CT functions.php

    Thread Starter Shady319

    (@shady319)

    Thank you, did that it for me.

    Thank you also Tareq for trying to assist me as well.

    Tareq

    (@worthingtech)

    Glad you got it sorted @shady -> I apologise for making more work for you than was required.

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Removing "Category Archives :"’ is closed to new replies.