Removing search button (not widget)
-
I’m trying to remove the search button from the header portion of my page. It’s not the widget function, I have that disabled, but the formatted Search button. I would like to remove this, how do I do that?
My blog is http://www.getfiercetraining.com. It’s the twenty eleven theme.
Blog url: http://getfiercetraining.wordpress.com/The blog I need help with is: (visible only to logged in users)
-
Howdy,
You can hide that search form with a little bit of CSS:
#searchform { display:none; }In order to edit your CSS, you’ll need the Custom Design upgrade. Learn more about it here:
-
One more question. I have the upgrade to WordPress, is it possible to insert a JPG into the the site title?
Thanks,
D
again the site is getfiercetraining.com -
It looks like you’ve hidden the site title, and have a header image at the top of your site.
Where exactly are you trying to insert an image?
-
Ah, this is for my other site healthclass2.0. I’m going to purchase the upgrade for this site as well, but Ideally I want to put a JPG logo where the Site Title is.
-
You can change the header image for http://healthclass20.wordpress.com under Appearance -> Header.
http://en.support.wordpress.com/themes/custom-header-image/
If you want to replace the site title with a logo, you could use something like this:
#site-description { display:none; } #site-title a { display: block; text-indent: -9999px; height: 100px; width: 150px; background-image: url('http://mydomain.com/image.jpg'); background-repeat: no-repeat; }Be sure to replace the above URL with your logo image’s URL, and to change the values for height and width to match the dimensions of your image.
- The topic ‘Removing search button (not widget)’ is closed to new replies.