Remove WordPress page title header using custom CSS

If you’ve ever needed to remove the title header from a specific WordPress page you can do it using custom CSS. No additional plugins required.  Copy and past the code below updating “.page-id-###” to reflect the ID# of your post or page.

/* Enter your remark here about why you’ve added this custom CSS */
.page-id-### .page-header {
display: none;
}

Custom CSS for WordPress Search widget

The WordPress search form widget is seriously ugly.  This custom CSS will give you some control over the search widget only a mother could love.

.searchform input[type=”text”]{
width: 100%;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.searchform input[type=”submit”]{
padding:5px 15px;
background:#FFF;
border:0 none;
cursor:pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px
border-radius: 2px;
}