batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Increase size of header to fit image.navbar-brand.brand-image img { height: 100px; }Forum: Themes and Templates
In reply to: [Theme: Expound] Color of continue reading buttonThat would probably work if it were a input button. This is actually an anchor “<a” with a background color.
a.button-primary { background: #ff0000; } a.button-primary:hover { background: 00ff00; }Forum: Themes and Templates
In reply to: [Attitude] How to remove all white space above headerAdd this to the style.css found under Appearance > Editor when your child-theme is active.
This will not remove it but will hide it from view.
.hgroup-wrap { display: none; }This will move your image up so there is no background space at the top of the browser window.
#branding { margin-top: 0; }Forum: Themes and Templates
In reply to: MenusGo into Appearance > Customize, select Navigation. There you can select the menu.
Forum: Themes and Templates
In reply to: Stretching images to edge of containerThey are using Before & After pseudo elements with a top & bottom border respectively. They are also adding a top & bottom border to the element itself.
<h1>We are your doers</h1>
h1:before {
content: ”;
position: absolute;
top: 9px;
border-top: 1px solid #412b1d;
}h1:after {
content: ”;
position: absolute;
bottom: 9px;
border-top: 1px solid #412b1d;
}h1 {
border-top: 2px solid #412b1d;
border-bottom: 2px solid #412b1d;
}Forum: Themes and Templates
In reply to: MenusA lot of the added menus you will see are done with widgets.
Forum: Themes and Templates
In reply to: Reduce width of menu border? Twenty TwelveI see you removed the border all together. Try adding like this for the effect you asked for.
.menu-top-container { border-bottom: 1px solid #ededed; }Forum: Themes and Templates
In reply to: [2013 Orange Sequence] where is the support forum?This is it. That is a modified version of the 2013 theme.
Forum: Themes and Templates
In reply to: Reduce width of menu border? Twenty TwelveThis will move the image up and the nav down, will that work for you?
.header-image { margin-top: -6.0rem; } .main-navigation { margin-top: 4.2rem; }Forum: Themes and Templates
In reply to: [Oxygen] Broken picture appearing in headerRemove the header widget under Appearance > Widgets.
Forum: Themes and Templates
In reply to: [Spun] Footer Font Change.site-info a {
font-family: “Century Gothic”;
}Forum: Themes and Templates
In reply to: CSS code to change color of links in body text.entry-content a { color: red; }Forum: Themes and Templates
In reply to: Footer Widget Font Size#navigation { margin: 0; } #header hgroup { margin: 0 auto; } #footer-widgets { padding-top: 10px; padding-bottom: 0; } #header { margin: 0 auto; }Forum: Themes and Templates
In reply to: [Expound] Text color.You can change the color of select text in the editor when a post/page is created or edited.
Look on the second for the A with an arrow on the right side, you may need to show the “Kitchen Sink”.Forum: Themes and Templates
In reply to: [Theme: One-Column]You would first need to create a child-theme, then copy the header.php filr into the child theme directory.