Adding links to "Our Services" page

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

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

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Hi,

    I am trying to add links to "Our Services" page (http://bilalmirza.ca/?page_id=167)
    however the links button in the area where I create the page is disabled. So I can't add links
    Ideally, I would like the end user to be able to click each of the titles to go to a specific page on our website.

    Thanks,
    Nazia
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
  3. bilalmirza

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Thanks Gourav,

    I got the links to work. I went to your recommended website to see how I could tackle the line spacing issue but I was unsuccessful.

    There are extra spaces before and after headings that I want to get rid of ... is there a way of doing that?

    See (http://bilalmirza.ca/?page_id=167)

    Ideally, the extra line spaces before and after each heading should be gone:
    Tax Returns


    • Personal tax returns
    • Corporation tax returns

    Accounting


    • Bookkeeping
    • Payroll
    • Financial statements

    Consulting


    • Incorporations
    • Management consulting

    Tax Audits & Appeals

    Wills & Estate Planning



     
  4. Gourav

    Gourav Support Staff

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

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

    Code:
     div.page-content p {
    margin-bottom: 0;
    }
    div.page-content h2 {
    margin-bottom: 0;
    }
    
    Thanks & Regards
    Gourav Shrivastava
     
  5. bilalmirza

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    When I paste this code ... it messes up the other pages on the website???
     
  6. Nitesh

    Nitesh Support Staff

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

    It is happening because page-content classes are same at all pages.
    Do one thing. put all your content inside a different class.
    For eg.
    <div class="page-data">
    YOUR EDITOR CONTENT
    </div>

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

    Code:
     div.page-content .page-data p {
    margin-bottom: 0;
    }
    div.page-content .page-data h2 {
    margin-bottom: 0;
    } 
    Thanks & Regards
    Nitesh Raghuwanshi
     
  7. bilalmirza

    bilalmirza Member

    Joined:
    Feb 11, 2014
    Messages:
    38
    Likes Received:
    2
    Thanks Nitesh,

    Can I also get rid of the space at the top and bottom of that same page... see screen shot

    Regards,
    Nazia
     

    Attached Files:

  8. Gourav

    Gourav Support Staff

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

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

    Code:
    div.page-content {
    padding-top: 0;
    padding-bottom: 0;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  9. bilalmirza

    bilalmirza Member

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

Share This Page