How to make custom sidebars

Discussion in 'Cloriato WordPress Theme' started by hheijnis, May 23, 2013.

Thread Status:
Not open for further replies.
  1. hheijnis

    hheijnis Member

    Joined:
    Mar 27, 2012
    Messages:
    51
    Likes Received:
    0
    Hello, in the description of the Cloriato Theme, it says:

    - Unlimited Sidebars – Create as many sidebars as you want and assign them to individual posts/pages.

    How can I do this?

    Second question: How can I remove the breadcrumb notation and the repeating of the pagename at the top of each standard page?

    Thanks!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Download Dynamic Widgets plugin from WordPress.org and upload it.
    http://wordpress.org/plugins/dynamic-widgets/

    Check link for reference
    http://www.inkthemes.com/easily-control-appearance-of-widgets-on-your-wordpress-pages/02/

    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content h1 {
    display: none;
    }
    .content h2 {
    display: none;
    }
    .fullwidth h1 {
    display: none;
    }
    .fullwidth-page h1{
    display: none;
    }
    #crumbs {
    display: none;
    }
     
  3. hheijnis

    hheijnis Member

    Joined:
    Mar 27, 2012
    Messages:
    51
    Likes Received:
    0
    Thanks Gourav, both worked ;-)
     
Thread Status:
Not open for further replies.

Share This Page