Brad Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need help changing sidebar colourYou’re welcome.
Forum: Everything else WordPress
In reply to: 301 Redirects?Forum: Themes and Templates
In reply to: Need help changing sidebar colourHey Chris, you still have the image in the #main background, the image is the part that is giving you the color. #main needs to look like:
#main { background: #fff; padding: 15px; }
Let me know how it works out.
Forum: Themes and Templates
In reply to: Need help changing sidebar colourHey Chris, the other color (gray-ish) in the sidebar an image associated with #main, if you change #main background to just #fff, you will have a white background.
To add your border, you could add this to #content, but you will also need to reduce the width of #content or #sidebar-primary by the same amount otherwise you will have problems and a little padding as well. eg:
#content { border-right: 1px solid #000000; float: left; overflow: hidden; padding-right: 15px; width: 599px; }
Change #000000 to the color you would like the border, #000000 is the same as your footer border.
Forum: Themes and Templates
In reply to: Pull tab looking object in upper-right=)
Forum: Themes and Templates
In reply to: Pull tab looking object in upper-rightSorry I didn’t word my response that well after rereading. If you are not comfortable editing code, don’t delete code from the template file, go with the second and edit the style.css file, add display: none; so it looks like the below.
.tag-container { display: none; overflow: visible; position: relative; width: 100%; }
Forum: Themes and Templates
In reply to: Pull tab looking object in upper-rightIf you are comfortable making changes to template files, you could remove everything in the header.php file between
<div class="full-width-container top-header" style="display: block;"> <div class="container"> <div class="container-fluid"> <div class="row-fluid"> // There will be more code in here </div><!-- row fluid --> </div><!-- .container fluid --> </div><!-- container --> </div>
or you could add display: none; to the .tag-container in the style.css file, eg
.tag-container { display: none; overflow: visible; position: relative; width: 100%; }
Please make sure you make any changes to the theme via a child theme or custom css editor, best not to hack the current themes files.
Forum: Themes and Templates
In reply to: How to make the footer larger? Simple catchYou’re welcome.
Forum: Your WordPress
In reply to: Personal Showcase >> Parent Theme – The BootstrapHi Andrew, thanks for the feedback. As I’m not a designer I appreciate your thoughts, i’ll put some more thought in to this part of the site.
CheersForum: Themes and Templates
In reply to: footer text lowerhahah that’s ok, anytime! =)
Forum: Themes and Templates
In reply to: pinboardHi, the header and footer widths are all restricted by the wrapper width. I take it you are trying to make the theme have a full width header and footer area only?
If so you will need to do some modifications to how the theme is coded and css. Best option would be to make a child theme to achieve what you need.
Forum: Themes and Templates
In reply to: [Straight Up] Responsive?Looks like it is fixed width.
Forum: Themes and Templates
In reply to: footer text lowerHey happy to help and it was what you needed.
For the link situation, the following will underline all links under the menu area and footer.
#content a:hover { text-decoration: underline !important; color: #FF0000; } #colophon a:hover { text-decoration: underline !important; }
Forum: Themes and Templates
In reply to: How to make the footer larger? Simple catchIn the style.css file, look towards the bottom of the file for
/* =Footer -------------------------------------------------------------- */ #footer { border-top:6px solid #ccc; height:60px; color:#666; font-size:12px; padding-top:30px; }
Changing the height value to the height you want should do it.
Forum: Themes and Templates
In reply to: footer text lowerThis should work for what you are trying to get I think
#site-generator > p { margin-bottom: 0; }