gutterboy333
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuThanks Andrew.
Robin….. that would cause issues if the buttons were moved around.
Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menumenu-item-801
menu-item-802
menu-item-805etc..
Forum: Themes and Templates
In reply to: Is there a wp_nav_menu filter of any kind?It’s not live right now, I’m just working on it on my local server. I can upload a static copy if need be.
Forum: Themes and Templates
In reply to: Is there a wp_nav_menu filter of any kind?I’ve already read that page but nothing jumped out. I’ve also tried using the CSS pseudo
:beforeelement and browser support aside, it has it’s issues. So I was looking for something that was bit more rock solid.Forum: Themes and Templates
In reply to: Having issue with WordPress wp_enqueue_style/scriptDo you think it has anything to do with the URL having spaces in it hence the location containing a bunch of “%20”?
[ Please do not bump, that’s not permitted here. ]
Forum: Themes and Templates
In reply to: Having issue with WordPress wp_enqueue_style/scriptI already tried that by adding the below to the functions.php file but got the same results..
add_action('after_setup_theme', 'mmw_new_theme_setup'); function mmw_new_theme_setup() { /* Load style files on the 'wp_enqueue_scripts' action hook. */ add_action( 'wp_enqueue_scripts', 'mmw_new_load_styles' ); } function mmw_new_load_styles() { $foo = bloginfo('template_url') . '/reset.css'; $bar = bloginfo('template_url') . '/rhinoslider-1.05.css'; wp_enqueue_style('reset', $foo); wp_enqueue_style('style', bloginfo('stylesheet_url'), array('reset')); wp_enqueue_style('rhino', $bar, array('reset','style')); }Forum: Themes and Templates
In reply to: Admin bar not showingelizz.. it was ticked and the spacing for it wouldn’t show if it was turned off anyway.
Anyway….. was caused by not having the call to “wp_footer()” in the footer file; once I added this it showed up again. 🙂
Forum: Themes and Templates
In reply to: Admin bar not showingSorry I can’t link to the site as it’s on my local server.
Forum: Themes and Templates
In reply to: Need to use some ID's in themes?Ok thank you! 🙂
Forum: Themes and Templates
In reply to: How long does it take to convert XHTML/CSS to a WP theme?Samuel, Yes I know of that page. I was simply asking approx how long it takes to do. I don’t think that page tells you.
Forum: Everything else WordPress
In reply to: Does WP come with a built-in IE PNG fix?Ok thanks!
Forum: Fixing WordPress
In reply to: Menu in WP 2.7?Ok.. what I meant was in WP 3+ it had an option so you could manage the navigation menu. In 2.7 I couldn’t see anything.
But I figured out you have to do it manually… doesn’t seem to have been a feature then.
Forum: Themes and Templates
In reply to: Creating templates to base pages off ofGreat – thanks!
Forum: Fixing WordPress
In reply to: Edit core files inside admin?Alright… thanks for the info. Will check that out 🙂
Forum: Fixing WordPress
In reply to: Edit core files inside admin?Alright thanks!