batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need help with Navigation HOVER CSS problem.main-navigation li:hover > a { border-top: none; }Forum: Themes and Templates
In reply to: [Customizr] Can't change MENU box background colorThis will remove the line and give space so the white box on hover doesn’t overlap the other menu items.
.nav-collapse.tc-hover-menu-wrapper ul li a { border: none; } .nav-collapse.tc-hover-menu-wrapper ul li { margin-bottom:4px; }If you want to remove the box and line:
.nav-collapse.tc-hover-menu-wrapper ul li a { border: none; } .nav-collapse.tc-hover-menu-wrapper ul li a:hover { background: none; }Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Page background without messing#access { margin: 0 auto; } #secondary { margin-top: 20px; }Forum: Themes and Templates
In reply to: Theme Twenty FourteenSeems to work fine for me.
http://s29.postimg.org/d9vbt65o7/Untitled.pngAs esmi said, use a child-theme or plugin.
Looks like a webkit user agent style:
:focus {
outline: -webkit-focus-ring-color auto 5px;
}To remove it add none to the selectors attribute when focused:
.videowrapper:focus, .e4mwrapper:focus, { outline: none; }etc…
Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Page background without messing#main { padding: 0; }Forum: Themes and Templates
In reply to: [Mantra] HTML not working?<a href="<http://www.forestskillsltd.co.uk/shop/>" target="_blank">Click here for further details</a>
You have an extra open & close tag in link.Should be:
<a href="http://www.forestskillsltd.co.uk/shop/" target="_blank">Click here for further details</a>Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Page background without messing#primary
Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Menu ShadowThese are the default values.
You can change the rgba values (the part between parentheses) for different colors.You can play with rgba colors here.
The px values affect the size, depth & spread of the shadow.
You can play with those values here.#access { -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; }To remove completely replace the rgba & px values with the word none.
#access { box-shadow: none; }Forum: Themes and Templates
In reply to: [Atahualpa] Pages menu and permalink link on posts1.
div#menu1 { border: none; }Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Footer black 1px line#site-generator { border-top: none; }Forum: Themes and Templates
In reply to: [Tiny Forge] Tiny Forge Child Theme Stops Updating ChangesThat first block looks like it’s not closed
}
Forum: Themes and Templates
In reply to: Changing Menu Colour On Responsive ThemeTry it this way.
The second part changes it to grey when hovered over since the background is light.@media screen and (max-width: 650px) { .js .main-nav .menu li a { color: white; } .js .main-nav .menu li a:hover { color: grey; } }Forum: Themes and Templates
In reply to: [Customizr] Can't change MENU box background colorSorry, that should have been background.
.nav-collapse.tc-hover-menu-wrapper { background: red; }Forum: Themes and Templates
In reply to: Changing Menu Colour On Responsive ThemeTry this code
.js .main-nav .menu li a { color: white; }