How to insert a clickable and fixed background [duplicate]

Add div after body tag and apply below style. Your site start working. <div class=”fixedHeader”></div> <style type=”text/css”> .fixedHeader{ position: fixed; height: 80px; background: white url(http://www.affiliago.it/accounts/default1/banners/SKIN_BAKECA.jpg) no-repeat no-repeat center top; width: 100%; z-index: 1000; top: 0; } </style>

Creating a custom header

If you look at the Greyzed homepage you’ll see that it is a theme which is no longer under active development. I wouldn’t recommend this as you might not be able to get the most out of your WordPress site if your theme is out of date. That being said, if you don’t have the … Read more

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.