batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove search bar from menu in child themeYou can hide it with css.
.menu-item.menu-item-search { display: none; }Forum: Themes and Templates
In reply to: [Fashionistas] LogoActivate the custom css module in Jetpack setting if you haven’t already.
Add this to custom css, you will have to change the link to your logo.
You may also have to change the padding-left values based on your logo size..site-branding { background: url('http://upload.wikimedia.org/wikipedia/commons/e/e7/Mozilla_Firefox_3.5_logo_256.png'); background-size: contain; background-repeat: no-repeat; } .site-title { padding-left: 100px; } .site-description { padding-left: 100px; }The down side to this method is no link to the home page for the logo.
If you want the logo linked to your homepage, it will require editing a core php file and needs to be done in a child-theme.Forum: Themes and Templates
In reply to: [Customizr] Can't change MENU box background colorTarget this I think is what you want:
.nav-collapse.tc-hover-menu-wrapper { color: red; }Forum: Themes and Templates
In reply to: Sundance theme as full width…. How to do it?You will want to ask your question here.
This forum is for WordPress.org self hosted sites.Forum: Themes and Templates
In reply to: Can someone tell me this theme name?Forum: Themes and Templates
In reply to: [Theme: Twentytwelve] full width headerThe proper way to do this requires editing a core php file.
You should first create a child-theme.Forum: Themes and Templates
In reply to: Theme: FrauChange the CSS code.
#header { background: #ff0000; }The easiest way to do this is to install a Custom CSS plugin.
You will have a new option under Appearance > Custom CSS
You can enter the above code there. Change the hex-code to the color you want.Forum: Themes and Templates
In reply to: [Customizr] Can't change MENU box background color.navbar-inner { background: red; }Forum: Themes and Templates
In reply to: twenty fourteen theme/*This lowers the featured content to create more visual space below the nav-bar*/ .featured-content-inner { margin-top: 36px; } /*This removes the striped background that would normally appear from moving the featured content lower*/ #featured-content { background: #000 url(''); }Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] adding a extra header#custom-logo {
text-align: center;
}Forum: Themes and Templates
In reply to: [Theme: Blaskan] CENTERING TAGLINETry this:
header-message { text-align: center; }That’s what works in Firebug.
Forum: Themes and Templates
In reply to: [Spun] Fully opaque metaAdd to a child-theme or custom css plugin, if your theme doesn’t already allow custom css.
.site-header { opacity: 1; }Forum: Themes and Templates
In reply to: wich themeThe closest I have seen is OneColumn.
Add this to either a child-theme or a custom css plugin, if your theme doesn’t already have an area for custom css.
#page { max-width: 100% }Forum: Themes and Templates
In reply to: [Customizr] Adding slider to one of the widget areas of footerIf your savvy with css you might want to check this article.
http://coding.smashingmagazine.com/2012/04/25/pure-css3-cycling-slideshow/