How do I remove Contact Us form from home page?

Discussion in 'HomeBuilder WordPress Theme' started by pssurgery, Feb 18, 2014.

  1. pssurgery

    pssurgery Guest

    Joined:
    Mar 15, 2012
    Messages:
    3
    Likes Received:
    0
    How do I remove Contact Us form from home page?

    ----------------------------

    Hello,

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

    Code:
    .feature-content .left-feature {
    display: none;
    }
    .feature-content .right-feature {
    width: 576px;
    } 
    You can change the value of "width" as per your requirement.
    This will solve your issue.
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    .feature-content .left-feature {
    display: none;
    }
    .feature-content .right-feature {
    width: 576px;
    } 
    You can change the value of "width" as per your requirement.
    This will solve your issue.
     
  3. pssurgery

    pssurgery Guest

    Joined:
    Mar 15, 2012
    Messages:
    3
    Likes Received:
    0
    That removed everything, i want to keep the regular text, just lose the contact form. Please look at lesstech.us
     
  4. Piyush

    Piyush Support Staff

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

    Undo the above given solution.
    Now paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature-content .left-feature h2:nth-child(3){
    display:none;
    }
    .feature-content .left-feature .contactform {
    display: none;
    } 
    This will solve your issue.
     

Share This Page