Add columns to feature area

Discussion in 'BlackWell-WordPress Business Theme.' started by vesity, Jan 13, 2015.

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

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi. Is it possible to add columns (1/2 or 1/3) to a portion of the "Home Page Work Feature Description" area? I've tried shortcode plugins, but they don't work.
    The screenshot describes this more specifically. Thanks!
    Screen Shot 2015-01-13 at 3.56.25 PM.png
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !


    You can achieve similar to your requirement.
    Use below syntax for filling "Home Page Work Feature Description" in theme option panel.
    HTML:
    <div class="grid_7 column1 alpha">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
    </div>
    <div class="grid_7 column2">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
    </div>
    <div class="grid_7 column3 omega">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
    </div>


    Thanks & Regards
    Pramod
     
  3. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi Pramod,
    Thanks for your helpful reply. This is good news! It works relatively well, but there are two problems that I'm wondering about...
    1. There are no margins below the text (above the featured video), and very little margin between the columns.
    2. The whole area is off-centered to the left.
    Can these things be corrected? A screenshot is attached.
    Thanks!
    Screen Shot 2015-01-14 at 12.00.24 AM.png
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Vesity,

    Please paste the code given below in custom css.
    (Appearance->Theme Options->Styling Options->Custom Css) of your dashboard.
    Code:
    .column1 {
    padding: 0 15px;
    padding-bottom: 30px;
    overflow: hidden;
    }
    .column2 {
    padding: 0 15px;
    padding-bottom: 30px;
    overflow: hidden;
    }
    .column3 {
    padding: 0 15px;
    padding-bottom: 30px;
    overflow: hidden;
    }
    Thanks
    Praveen
     
  5. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Much better! Thank you, Praveen!
     
Thread Status:
Not open for further replies.

Share This Page