Widget Issues

Discussion in 'BizWay WordPress Theme' started by drkmbrown, Feb 18, 2014.

  1. drkmbrown

    drkmbrown Member

    Joined:
    Jul 2, 2013
    Messages:
    52
    Likes Received:
    0
    How, in widgets, do I do the following:

    1. Increase the space between widgets on my sidebar
    2. change the font color of the Widget Titles in my sidebar
    3. Remove the faint lines between the widgets.
    4. Create a new sidebar widget area
    Here is a link to see the widgets I have on my sidebar

    http://www.drkwamebrown.com/join
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .cycle-slideshow {
    margin-top: 50px;
    }
    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sidebar h3 {
    color: red;
    }
     
    In place "red" you can put your color or color code.

    3. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sidebar h3 {
    border-bottom: none;
    }
    .sidebar ul li {
    border-bottom: none;
    } 
    4. Go to the Appearance > Widgets panel in your dashboard and
    drag & drop any Widget in the Primary or Secondary Widget Area.
     
  3. drkmbrown

    drkmbrown Member

    Joined:
    Jul 2, 2013
    Messages:
    52
    Likes Received:
    0
    I am asking: How do I create another widget AREA. I know how to move widgets. I want more than two widget areas.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

Share This Page