a slider menu is compromised in space

I can see the problem is that max-height: 120px is set in the inline css of <div id=”soliloquy-container-1124″ class=”soliloquy-container soliloquy-fade”>. Removing that style solves the issue.

How to implement a JavaScript and CSS file for my WordPress homepage?

You would enqueue it, this is how Javascript is added to WordPress properly. This function would typically go in your theme’s functions.php or in a plugin. function my_scripts_intro() { is_front_page(){ wp_enqueue_script( ‘introjs’,’path to ..intro.js’ ); wp_enqueue_style( ‘introcss’,’path to ..intro.css’ ); } } add_action( ‘wp_enqueue_scripts’, ‘my_scripts_intro’ ); To determine the state of the visitor you would … Read more

Converting Static HTML pages to WordPress

Do you have this code corresponding to the style.css file that is in your main theme folder? <link rel=”stylesheet” href=”https://wordpress.stackexchange.com/questions/94194/<?php bloginfo(“stylesheet_url’); ?>” /> If you want to link to another name other than style.css or you have a different path you would want to use: <link rel=”stylesheet” href=”https://wordpress.stackexchange.com/questions/94194/<?php bloginfo(“template_directory’); ?>/pathocss.css”>

Outputting the blogposts or the_content()

Post content is stored as a single block of data in the *_posts table in the post_content column. It isn’t divided up into sections, so what you want is tricky at best. What the the_content functions does is take that block of data from the database, runs one or more filters on it that alter … Read more

Animate.CSS with a child theme

The example in the page you linked uses get_template_directory_uri(), which will only give you the parent theme URI. If you want to target something in a child theme, you have to swap that for get_stylesheet_directory_uri(), which will give you the child theme URI, in the event a child theme is being used.

Which files can be replaced in a child theme?

For ie.css specifically, the issue is that it is included via get_template_directory_uri(), which will output the parent theme directory when a child theme is being used. The solution is to add an action hooked to wp_enqueue_scripts with a lower priority, dequeue the stylesheet, then re-enqueue it using get_stylesheet_directory_uri(), which will load it from the child … Read more

How to edit wordpress native gallery’s css file?

If you want to override the default gallery CSS, first, unhook the core-defined CSS: add_filter( ‘use_default_gallery_style’, ‘__return_false’ ); Then, you can add your own CSS, however you wish – using your Theme style.css, or via separate CSS file that you enqueue, etc.