benrsullivan
Forum Replies Created
-
Excellent! Thank you.
Forum: Themes and Templates
In reply to: Making header responsive with Twenty Thirteen theme?It breaks pretty badly, the header is partly off the page on the left side and the page spans the whole browser width.
Forum: Themes and Templates
In reply to: Making header responsive with Twenty Thirteen theme?Well I’m using a child theme of 2013, but shouldn’t it still have the responsive code from the parent?
Adding display_type worked! Thanks.
Forum: Fixing WordPress
In reply to: Site body width changing on mobileUnfortunately, I’m still having the problem of the site body being much too narrow… on an iPhone it only takes up about 1/3 of the screen width. I’ve tried changing CSS in the media queries section but I can’t get the body to appear wider.
Forum: Fixing WordPress
In reply to: Site body width changing on mobileCool! I’m slowly getting the hang of it. One thing that I’ve noticed is that the website banner (as well as the slideshows) resizes with my browser window… how can I get the images further down on the page to do that as well?
Forum: Fixing WordPress
In reply to: Site body width changing on mobileSo if I understand this correctly, what I need to do is use media queries to detect certain browser widths and modify the CSS for each one? I’ve never used media queries before or even spent much time dealing with cross-browser/platform compatibility issues, so this is new territory for me.
Forum: Fixing WordPress
In reply to: Site body width changing on mobileThe problem still occurs when I switch to Twenty Twelve.
Forum: Fixing WordPress
In reply to: Site body width changing on mobileCan I switch back to the parent theme to check without breaking my site when I return to the child theme?
Forum: Fixing WordPress
In reply to: Using jQuery button hover effectHaha, works like a charm. Thanks a bunch!
Forum: Fixing WordPress
In reply to: Using jQuery button hover effectadd_action(‘wp_enqueue_scripts’,’include_my_scripts’);
function include_my_scripts() {
wp_enqueue_script(‘baz.js’,’https://2013.whitehallrow.com/wp-content/themes/twentytwelve-child/js/baz.js’);
}I put that at the very bottom of functions.php.
Forum: Fixing WordPress
In reply to: Using jQuery button hover effectStill nothing… I’m supposed to have baz.js in my child theme’s js folder, right?
Forum: Fixing WordPress
In reply to: Using jQuery button hover effectMakes sense, but it’s still not working… I have the feeling I’m doing something wrong in my baz.js file, here’s the code I’ve got:
jQuery(document).ready(function($){ $('.modelbutton').on('mouseenter',function(e) { $(this).css('background-image','wp-content/uploads/2013/05/buttonA_on.png'); }); $('.modelbutton').on('mouseout',function(e) { $(this).css('background-image','wp-content/uploads/2013/05/buttonA_off.png'); }); });
Hmm… I guess I’ll find another way. Thanks anyhow!
Forum: Fixing WordPress
In reply to: No menu navigation on Firefox & SafariExcellent! Many thanks, looks a lot better now.