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.
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.
That removed everything, i want to keep the regular text, just lose the contact form. Please look at lesstech.us
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.