Customizer: CSS changes not persistent

OK. Even though I wasn’t able to figure it out with CSS and wp_head() I managed to hack something that works. <?php $sidebar_background_color = get_theme_mod(‘design-sidebar-background-color’); ?> <aside style=”background-color: <?php $sidebar_background_color; ?>;”> <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?> <?php endif; ?> </aside> Since I could manipulate DOM and HTML just fine I decided … Read more

I cannot make this position properly in WordPress [closed]

Make sure you have the alignleft and alignright classes defined properly. They should have float: left; and float: right; respectively. Make sure you correctly float your elements and clear the floats where you want to start a new row/section. This is a CSS-only issue. EDIT: Check this solution, note the clear and float CSS declarations: … Read more

Dropdown menu’s fighting with each other [closed]

The problem is that though your sub menu is set to opacity: 0, its still displaying, just transparent. So when you hover any area where a submenu is present, you’re triggering #access ul li:hover which sets the opacity of the submenu with #access ul li:hover > ul. Try setting adding visibility: hidden to #access ul … Read more

Site name not showing in browser bar, only url

CSS will not influence it. Check your theme’s functions.php file (or similar) to see if it’s transforming the title. add_filter( ‘wp_title’, ‘some_function_name’ ); You can read more about it in the Codex: https://codex.wordpress.org/Function_Reference/wp_title#Customizing_with_the_filter

Theme stylesheet not called properly on cloned website

If you used a plugin to move the site. I use WP Migration for instance. When you install the migrated version to your local environment, the plugin will change the domain to whatever your local domain is. In your case it is 127.0.0.1. The reason it does this is that many of the options are … Read more

Floated element floats into post content in IE, Safari, and Chrome

UPDATE: Added a second alternative to match the targeting currently defined by your parent theme. Try adding: // generic target (first answer) a.more-link { display: block; } // more precise target based on parent theme (second answer) .entry-content .more-link { display: block; } Note sure that will get you to 100% across all of your … Read more