Hi! I was hoping you could help me with some code for my site: 1. I would like to remove the text from below the 3 column photos. 2. Can I remove the second video / widget option to only be one video that is centered to the page? 3. Is it possible to remove the 2 gray lines that border the navigation wrapper? 4. How do I change the color of the drop down navigation menu bar? Screenshot attached. 5. How do I remove the grey overlay on the header bar on the interior pages? I just want there to be a photo without the screen. Thank you for your time!
Hello, 1) Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: div.feature-page-wt-thumb-container.gallery p { display: none; } 2) For this just upload video only in VideoBox First. Leave second one empty. 3) Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .nav-border-container { border-top: none; border-bottom: none; } 4) Code: .sf-menu ul li { color: YOUR COLOR VALUE; background: YOUR COLOR VALUE; } .nav-wrapper ul li a:hover{ color: YOUR COLOR VALUE; background: YOUR COLOR VALUE; } 5) Code: .top-bg-mask { background: none; } Thanks & Regards Nitesh Raghuwanshi
Thank you!! Everything worked great except for removing the text from the 3 boxes. When I dropped in the code it made the whole box that the content sits in narrower and now it doesn't match the rest of the page. I attached a screen shot. Thank you!
Hello, Go to the Appearance -> Theme Options -> Styling Options -> Custom CSS section of your dashboard and paste this code in Custom CSS section Code: div.feature-page-wt-thumb-container.gallery p { visibility: hidden; } in place of code given below. Code: div.feature-page-wt-thumb-container.gallery p { display: none; } This will solve your issue.