ellacopter
Forum Replies Created
-
Perfect, thank you Jeremy.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] One-Page Site MenuHi Andrew,
I’m pleased to say that that after following this tutorial, I now have a functioning one-page website!
Thanks for your help!
Forum: Themes and Templates
In reply to: [Twenty Seventeen] One-Page Site MenuThanks for responding!
I haven’t as yet. But I think I’ve found a tutorial to help me so you don’t have to worry (until I inevitably panic again!!)
Thank you
Forum: Fixing WordPress
In reply to: Twenty Eleven Child Theme – SVG Logo?Thanks Andrew.
Forum: Fixing WordPress
In reply to: Twenty Eleven Child Theme – SVG Logo?It’s that simple?
How would I define the height/width?
Forum: Fixing WordPress
In reply to: Moved wordpress site not loadingThanks so much.
Really appreciate all your help!
Forum: Fixing WordPress
In reply to: Moved wordpress site not loadingLooks like a permissions error then – thanks.
How would I change the permissions?
- This reply was modified 7 years, 7 months ago by ellacopter.
Forum: Fixing WordPress
In reply to: Moved wordpress site not loadingThe page that is loading around the 404 error is their existing website, not the one that I moved over.
Forum: Plugins
In reply to: [SVG Support] Image not displayingThanks! I thought that was probably the case but wanted to be 100% sure!
Forum: Plugins
In reply to: [SVG Support] Image not displayingThank you!
Forum: Fixing WordPress
In reply to: Logo size on MobileThank you so much, Jacob. It worked perfectly!
Forum: Fixing WordPress
In reply to: Child theme not overriding parent themeThank you so much, Andrew!
This is all such a learning experience – I’ll get there in the end!
Thank you again!
Forum: Fixing WordPress
In reply to: Child theme not overriding parent themeI’m still struggling with this. Can anybody help?
Forum: Fixing WordPress
In reply to: Child theme not overriding parent themeThanks Andrew. That got rid of the error perfectly, but the changes in my child theme style.css file still isn’t showing.
Forum: Fixing WordPress
In reply to: Child theme not overriding parent themeThank you!
I’m now getting this error.
Parse error: syntax error, unexpected ‘wp_enqueue_style’ (T_STRING) in /homepages/34/d262023013/htdocs/audiopluscouk/wordpress/wp-content/themes/twentyeleven-child/functions.php on line 5
This is my functions.php
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ) wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'twentyeleven') ); } function load_fonts() { wp_register_style('et-googleFonts', 'https://fonts.googleapis.com/css?family=Open+Sans'); wp_enqueue_style( 'et-googleFonts'); } add_action('wp_print_styles', 'load_fonts');