By the way what did you change?
I swapped around a couple of lines of code, so the base.css
file loads before the style.css file
. Otherwise, your base.css
styles would have taken precedence over your style.css file, it would have been much harder to add styles in this circumstance.
It was this;
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/>
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/css/base.css"/>
And I changed to this;
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/css/base.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/>
Thanks for contributing to the WordPress community, Claudia ??