• Hi there,

    I was having some trouble with getting rid of the page titles in the Cleanio theme by Cyber Chimps. I have a Godaddy account that allows you to apply the theme. Really great for the most part.

    Here are some customizations that I have done in order to make the theme look a little tighter.

    To get rid of Breadcrumbs or page titles, alot of times you may use this in your customs CSS area, or going to editor under the Appearance catagory of your WP CMS area.

    .breadcrumbs {
    display:none;
    }

    .breadcrumb-list {
    display: none;

    These can work for some theme and normal WP templates. But for the Cleanio Template, the page titles are coded as .entry-title in the CSS file.

    So if you use :
    .entry-title {
    display:none;
    }

    This should work and remove the page titles for you. This will allow you to title your pages within each page if needed.

    Another little fix I wanted to include was to get rid of such waste of page real-estate in the header.

    header#cc-header {
    margin-top: 35px;
    margin-bottom: 30px;
    }

    so instead I changed it to :
    header#cc-header {
    margin-top: 10px;
    margin-bottom: 5px;
    }

    And this gets rid of the excessive margins.

    Another issue, I’ve read about – is dealing with the extremely large menu buttons. They are nice, but a quick fix option that worked extremely well for me was to use the MENU PLUGIN : MEGA MENU’s for WP.
    This allowed me to slim the navigation and customize the color. The options used in MEGA MENU are almost limitless and look great.

    The forth thing to customize this to change the Footer CSS to accomodate slightly wider Text Box Widgets used in the Footer.

    Originally the footer had:
    #footer-widgets .widget-container {
    border: none;
    }
    Here was the edit for that:

    #footer-widgets .widget-container {
    border: none;
    width : 320px;
    }

    I just added a width attribute and it did really nicely by expanding those widgets slightly to span across the bottom of the page.
    So, I have a Twitter Feedbox, Soundcloud player, and a Block of icons linking to music related pages. I think this could be useful for other musicians/artists.

    I hope this has been helpful, and feel free to post any tweaks that you may have done, or found helpful for the CC Themes.

    PS. If you did find this helpful, and would like to do something cool for me, I’d love for you to check out my official music site and download a song or 2. It would greatly help me out!

    Michael Hensen.com – Buy a track for .99 Cent!

    Thanks and God bless,
    -Mike

  • The topic ‘Getting Rid of Page Titles and breadcrumbs in some themes’ is closed to new replies.