Formating of the First Feature Description

Discussion in 'General InkThemes Discussion and Feedback' started by bilalmirza, May 8, 2014.

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

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Hi
    I want to list services in the first feature column area (Bizway Pro theme).
    I want them to look like this instead of a mumbo jumbo paragraph (bilalmirza.ca):
    First Feature Description

    Tax Returns
    •Personal taxes (T1)
    •Corporation taxes (T2)
    •US taxes
    Accounting
    •Bookkeeping (monthly, quarterly, annual)
    •Payroll (bi-weekly, monthly, annual)
    •Financial Statements
    Consulting
    •Incorporations
    •Management Consulting
    Tax Audits & Appeals
    Wills & Estate Planning


    Thanks
    Nazia
     
  2. Gourav

    Gourav Support Staff

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

    Go to
    Appearance > Theme Option >Home Page Feature Area > First Feature Description
    and add replace the current text with text given below
    Code:
    <ul>
    <span>Tax Returns</span>
    <li>Personal taxes (T1)</li>
    <li>Corporation taxes (T2)</li> 
    <li>US taxes</li>
     <span>Accounting</span>
    <li>Bookkeeping (monthly, quarterly, annual)</li>
    <li>Payroll (bi-weekly, monthly, annual)</li>
    <li>Financial Statements</li>
    <span> Consulting</span>
    <li>Incorporations</li>
    <li>Management Consulting</li>
    <span> Tax Audits & Appeals Wills & Estate Planning</span>
    </ul> 
    now,

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

    Code:
    div.page-item ul span {
    font-weight: bolder;
    font-size: 16px;
    color: black;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  3. bilalmirza

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Most of it worked, however

    1) the last two services are merged in one line.

    2)there is an extra space before the first service (tax returns)

    I tried fixing the first issue by changing this :
    <span> Tax Audits & Appeals Wills & Estate Planning</span>
    to
    <span> Tax Audits & Appeals </span><span>Wills & Estate Planning</span>
    but it still didn't work (see bilalmirza.ca)
     
  4. Gourav

    Gourav Support Staff

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

    1. Use line break tag where you want to break the line.

    Code:
    <br> 
    2.
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     div.page-item.first-item.view.view-ninth p{
    margin-bottom:0;
    }
    Thanks & Regards
    Gourav Shrivastava
     
    bilalmirza likes this.
  5. bilalmirza

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Great. Both worked! :)
     
Thread Status:
Not open for further replies.

Share This Page