Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: White Screen after PHP CodingYou need to access your website via SSH, FTP or your hosts panel software. People seem most comfortable with FTP. A good client to use is FileZilla:
http://codex.wordpress.org/Using_FileZilla
Once you’ve read that page and downloaded the software, you need to navigate to your hosting environment and correct your error in that file.
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?Don’t worry ’bout that, glad you got it sorted in the end 🙂
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?You’re failing to import the parent’s stylesheet. You have left this line:
@import url("../divi/style.css");It should be a capital D.
Did you change the @import line too, as in making Divi start with a capital?
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?OK I’ve seen it.
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?If you have the template and the import both starting with a capital D and the child-theme is mis-behaving, we’ve hit a brick wall in these forums. Since your theme is a commercial one, nobody here can see the templates to advise you. You’d have to take it up with Elegant Themes.
If you activate the child-theme I’ll still take a look though.
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?http://www.shutterlydivine.co.uk/wp-content/themes/divi/style.cssdoesn’t exist, whereas:
http://www.shutterlydivine.co.uk/wp-content/themes/Divi/style.cssdoes.
So if you keep the letter
Das lowercase in your child theme stylesheet, it’s not going to import any CSS rules.Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?If all you’re doing is importing the CSS rules from the parent, it shouldn’t really change anything? Did you change the
@importline too, as in makingDivistart with a capital?You may not be used to the *nix world. A
Dand adare completely different things 🙂Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?The Divi theme folder is in your wp-content directory and it starts with a capital D. I know because I’ve read its stylesheet 🙂
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?Use
Template: DiviI think it’s the capitalisation.
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?In your child stylesheet, where you have this:
Template: twentyfourteenThe template name needs to be the slug of the parent theme, generally matching the directory name of the parent. So if it is actually just
divithen you would have :Template: diviForum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?A text editor. A very good one is Sublime Text:
Forum: Fixing WordPress
In reply to: Unable to access blog after domain changeSo when someone visits
http://sallys.me.ukwhat do you want to happen? At the moment it looks like an unconfigured WordPress 3.9.1 site.Forum: Fixing WordPress
In reply to: Unable to access blog after domain changeThe most likely explanation is that your file permissions are set incorrectly. There’s an explanatory Codex article about just that:
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?wp-content is a directory inside the top level of your WordPress website. So, wherever you are hosting the site, navigate to your WordPress directory and you’ll find it in there. Then, the path I outlined above will be apparent to you.
Clicking on a generic relative path isn’t going to do anything.
Forum: Fixing WordPress
In reply to: Where's the theme directory to make the child theme?You need to create the directory inside your WordPress root folder under:
wp-content/themes/<your child theme>