Hi there. Is it possible for me to replace the search box with a clickable button (like a donate now button) next to the dropdown menu? If not, can I change the logo at the very top left and change the link of the logo to something else instead of the default site url. Thanks a lot. More power. Jerry
Hello, To remove the Search box from the menu bar, paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .top-search { display: none; } Now, Go to the header.php file present in your theme directory and paste the code given below for the donate button. Code: <div class="donate_button"> <a href="Enter your donate URL link here"> <input type="button" name="donate" value="Donate Now" style="margin-top: 15px; margin-left: 130px; background-color: red; border-style: outset;"/> </a> </div> For the reference see the image given below, This will solve your issue.
I wanted to totally get rid of the search box and replace that with the donate now 'button'. Thanks. Jerry
Go to the header.php file present in your theme directory and remove the code as shown in the image given below. This will permanently remove the search box from the header of the Theme.