Brad Davis
Forum Replies Created
-
Thanks allxdsgn.
Also if you are after a narrow template, check out – https://twitter.github.io/bootstrap/examples/marketing-narrow.htmlYou can set a max-width to the container if you don’t want the 1170px width, or make your own theme using the customize options to set your width – https://twitter.github.io/bootstrap/customize.html (rebuilding one of mu sites this way at the moment.)
Forum: Themes and Templates
In reply to: [Glossy Stylo] how to remove widgets on Glossy StyloDo you still have this problem?
How did you go about unregistering the widget?I used The Bootstrap to make a full width child theme, I add a div that was full width, then added the container inside to keep everything in the centre.
Check the html on my site here: https://www.bradley-davis.com/Forum: Themes and Templates
In reply to: How and when to use add_action vs add_filter functionsTake a look at the description and examples in the codex of each, hope that will help give you an idea of the difference.
– add_action
– add_filterForum: Themes and Templates
In reply to: [Glossy Stylo] how to remove widgets on Glossy StyloYou could try to unregister the widget – Function Reference/unregister widget
Forum: Themes and Templates
In reply to: [Delicate] How can I remove the Tag Line in the header?Hi, in Settings -> General you can change the Tagline of a site so you could just leave it blank if the theme pulls the element from here.
Forum: Fixing WordPress
In reply to: Can't see changes to main menuHappy to hear you got it sorted! I often make the same mistake when working with Thesis so I will be the last person to say check it first! haha
Forum: Fixing WordPress
In reply to: Can't see changes to main menuHi, you are using the Thesis frame so there could be two ways to make menu changes depending on your settings. Are you doing it through the Thesis options or the WordPress menu builder?
Forum: Themes and Templates
In reply to: Twenty Eleven Child Theme Navigation Bar Color IssuesYou’re welcome.
Forum: Everything else WordPress
In reply to: 301 Redirects?Oh that is good to know, thanks for the link Mika!
Forum: Themes and Templates
In reply to: Twenty Eleven Child Theme Navigation Bar Color IssuesHappy to hear it worked for you. I doubt you will need to update the code for a long time, each version targets a different browser deal with the way they handle things. Hopefully if anything we will be able to use less code in the future, but that would be a perfect world. =)
Forum: Themes and Templates
In reply to: Twenty Eleven Child Theme Navigation Bar Color IssuesThe problem is in ie as well. You can get Firebug for Safari and ie also have their own Firebug like tool (in ie press f12) to help figure these bugs out.
try adding the follow to your #access in your css file
#access { background-color: #FFFFFF; background-image: none; background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF); /* Safari 5.1+, Mobile Safari, Chrome 10+ */ background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF); /* Firefox 3.6+ */ background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF); /* IE 10+ */ background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF); /* Opera 11.10+ */ }
Forum: Fixing WordPress
In reply to: Add a widget to a div on a pageAs mentioned, create a child theme then you could register a new sidebar, then widgetize that area of the page template. Drag your news widget in the sidebar you registered and style it.
Articles:
– register new sidebar
– widgetize wordpressForum: Fixing WordPress
In reply to: Making wordpress site compatible for ieHere are a few articles that might help you get the rounded corners and gradient that I can see missing in the menu bar:
– css rounded corners
– css gradientsForum: Everything else WordPress
In reply to: 301 Redirects?It’s a good idea to make sure you have host access as well before you make any changes to the htaccess file via the plugin, just if you make a mistake and the site shuts you out.
I place my redirects at the end of the htaccess file in some type of order or grouping.
You don’t need to include the http or anything in the first part of the redirect, just everything after the root domain, but include the / in the redirect. Hope that made sense.