Sidebar Widgets: Modifications

Discussion in 'BizWay WordPress Theme' started by drkmbrown, Feb 14, 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
    2. change the font color of the Widget Titles
    3. Remove the faint lines between the widgets.
    Here is a link to see the widgets I have on my sidebar

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

    drkmbrown Member

    Joined:
    Jul 2, 2013
    Messages:
    52
    Likes Received:
    0
    Also, how do I add a new widget space to the sidebar?
     
  3. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    1) You can add blank <p></p> tag in the sidebar widget. To increase space.
    2) Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .sidebar h3 {
    font-color: YOUR FONT COLOR;
    }
    3) Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .sidebar {
    border-left: none;}

    Thanks & Regards
    Nitesh Raghuwanshi
     
  4. drkmbrown

    drkmbrown Member

    Joined:
    Jul 2, 2013
    Messages:
    52
    Likes Received:
    0
    Thanks Nitesh. The code to remove the faint lines between the widgets (on top of and below) did not work. What about creating new sidebar widget spaces? I only have two.
     
  5. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For faint line replace previous code with the code given below.
    Code:
    .sidebar h3 {
    border-bottom: none;
    }
    There is no widget limit for the sidebar.
    You can add multiple widgets in the primary and secondary widget area.

    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page