How to delete the search bar of the Fontfolio theme
-
Please I would like to delete the search bar at the top right corner of my blog (using a Fontfolio theme).
How can I do that, knowing that I’m a beginner ?
Thank you very much
The blog I need help with is: (visible only to logged in users)
-
I checked http://theretailbee.com/ and I see that you tried to hide the search box using this custom CSS:
.header-search-form { display: none; }You are on the right track! In CSS selectors, the names of the classes (the parts with “.” before them) need to match exactly with the class name in the HTML. So, for the search box in the header of the Fontfolio theme, the container element is “header-search” and not “header-search-form” so you can hide it like this:
.header-search { display: none; }I used my built-in browser tools to figure out what the class name was:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/How can I do that, knowing that I’m a beginner ?
Here are a couple great tutorials about CSS you might like if you’re just getting started:
http://www.htmldog.com/guides/cssbeginner/
http://www.codecademy.com/courses/web-beginner-en-TlhFi/0/1?curriculum_id=50579fb998b470000202dc8b -
THANK YOU SO SO MUCH !!!!!!
Can i ask you one more question?
I have a problem in my menu bar.
People are able to click on “The bee’s diary” for example and find the page empty. which i don’t want.
I want to block that and only give people the option to click on “Quote of the week” or “Image of the week”.
How can i do that and not let the titles open but just the subtitles?
Thank you again for your help and time!
-
I want to block that and only give people the option to click on “Quote of the week” or “Image of the week”.
I checked your site again, and I see you figured this out by using the method mentioned at http://en.support.wordpress.com/menus/#creating-static-parent-tabs
Nice work!
- The topic ‘How to delete the search bar of the Fontfolio theme’ is closed to new replies.