Activating Child theme breaks alignments & sizes
-
I was using SiteOrigins pagebuilder in the past. I converted everything to Blocks and installed the Twenty Twenty Four (TTF) theme. I replaced all the old content on the homepage/frontpage. I have used the default blocks that come with WordPress. Everything looks fine in the parent theme as you can see below.
I was happy with this and created a child theme. I followed the tutorials and created a child folder and made 2 files. When I activated the child theme all alignments and sizes seem to break at random: Image alignments, sizes, button widths, site sizes, spacing between columns, etc.
Here’s what’s in my functions.php file
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parenthandle' ), wp_get_theme()->get( 'Version' ) // This only works if you have Version defined in the style header. ); }
And here’s what’s in the style.css file
/* Theme Name: Twenty Twenty-Four Child Theme Theme URI: https://www.ads-software.com/themes/twentytwentyfour/ Description: Twenty Twenty-Four Child Theme Template: twentytwentyfour Author: Sculpt Monkey Author URI: https://www.sculptmonkey.com/ Version: 1.0 Text Domain: twentytwentyfour License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html */
Is there something that I am doing wrong? I have deactivated the SiteOrigins widgets and pagebuilder along with W3 Total Cache and other plugins. It’s more or less on basic plugins and WooCommerce. I don’t have much technical knowledge. All that I know is from your helpful forums and help files. I am a sculptor by profession! Thanks for any help that you can give!
The page I need help with: [log in to see the link]
- The topic ‘Activating Child theme breaks alignments & sizes’ is closed to new replies.