stevem1991
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display a list of child pages on a parent page in WordPressThanks kmessenger,
I’ll talk to them and post here if i figure it out ??
Forum: Fixing WordPress
In reply to: Display a list of child pages on a parent page in WordPressI dont want the child pages on the nav bar. I just want to list the child pages on the parent page, similar to how posts are displayed.
I intened the path to be:
– Hover to ‘Blog’ on the main nav bar
– Choose a category e.g. ‘Web Development’ (parent page)
– Which would direct users to the ‘Web Development’ page
– On the web development page it would show the list of Web Development child pages/articles that users can choose to read (kind of like how posts are displayed)I’ve worked it out. I was using a theme called sydney where you have to edit the page wrapper padding in the customizer rather than css!
Forum: Fixing WordPress
In reply to: How to change the height of my "Arcade Basic" header imagesIf you are free to solve another problem I wouldbe really grateful…
I managed to make the headers bigger for each page, but as you should see, there is a wide blank space under the header of my index page that I cantwork out howto get rid of, would you have any suggestions?
Forum: Fixing WordPress
In reply to: How to change the height of my "Arcade Basic" header imagesI’ve managed to fix this problem. Ijust started from scratch, rewroteall the files and it’s now working, i must have missed a small detail somewhere.
Forum: Fixing WordPress
In reply to: Child theme not workingResolved!! ??
Forum: Fixing WordPress
In reply to: Can't access wp-admin in my child themeResolved!! ??
Forum: Fixing WordPress
In reply to: How to change the height of my "Arcade Basic" header imagesSorry for the late reply, here’s the functions.php
<?php
/**
* Enqueues child theme stylesheet, loading first the parent theme stylesheet.
*/
function themify_custom_enqueue_child_theme_styles() {
wp_enqueue_style( ‘parent-theme-css’, get_template_directory_uri() . ‘/style.css’ );
}
add_action( ‘wp_enqueue_scripts’, ‘themify_custom_enqueue_child_theme_styles’ );and here’s the style.css:
Theme Name: Arcade Basic Child
Description: Child theme for The A Bar
Author: Alex Matthews
Template: arcade-basic
*/
Forum: Fixing WordPress
In reply to: How to change the height of my "Arcade Basic" header imagesBrilliant, thank you, that worked. There’s one problem though…I can activate the new child theme and edit it as normal, however when I exit my browser go back to theabarbrighton.com/wp-admin the page is blank..? Is there a template file that you need to include in the child directory to access the wp login page?