Good day, I am building a website on the Golden Eagle Template. On the Home Page there is a Sign up part/bar and a part below that where blog posts/widget shows. How do I remove both of these? I did make a static home page at set that right in my General Settings. I attached a screenshots. (1 is from the template. 2 is how mine looks at the moment.) Thank you! Landi
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature-strip { display: none; } .feature-blog { display: none; } .feature-bottom { display: none; } This will solve your issue.
Thank you, I used the same method to get rid of the top search button But I would like to get rid of the dashed line at the top as well - how do I do that?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .social-links { border-bottom: none; } This will remove the dashed line from the top.