wpnici
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Drop-Down-Menue how to do?Does nobody has any ideas?
Forum: Themes and Templates
In reply to: Background image doesn't loadAahhh thanks that was my mistake 🙂
I use the div because I have diffrent pictures to move on diffrent places. If I would use the <img src=”—“> then all definations in the CSS would be for all images or am I wrong with that?
Forum: Themes and Templates
In reply to: Background image doesn't loadI have another empty div in the footer but there the image does load. That’s why I don’t understand it
HTML:
<footer id="footer"> <div id="footer_balken"></div> <div class="container"> <nav id="nacSecondary"> <ul> <li><a href="#">Navigationspunkt</a></li> <li><a href="#">Navigationspunkt</a></li> </ul> </nav> </div> </footer> <?php wp_footer();?> </body> </html>CSS:
#footer_balken{ background-image: url(./images/seitenbalken.png); height: 10px; width: 100%; }Forum: Themes and Templates
In reply to: Background image doesn't loadOkay do you have any ideas how to add the image in another way?
Forum: Themes and Templates
In reply to: CSS not loadingYou mean this?
http://snag.gy/pVnAi.jpgIt’s in german :/
Forum: Themes and Templates
In reply to: CSS not loadingThe Link for the console: http://snag.gy/AvVZK.jpg
HTML says that the URL was not found on the server.
“The link reffering site seems to be wrong or not current.”Forum: Themes and Templates
In reply to: CSS not loadingFirebug doesn’t say more. The console is empty there are no warnings or mistakes listed. It just says that there is no CSS defined.
Can I embed here pictures somehow? Then I could show the console.
Forum: Themes and Templates
In reply to: CSS not loadingFirebug says that there is no style defined.
Forum: Themes and Templates
In reply to: CSS not loadingIt still doesn’t work :/
This is what my head looks loke actually:
<head> <meta charset="utf-8"> <title>Arakanga GmbH</title> <link rel="stylesheet" href="<?php get_stylesheet_directory() ?>/style.css" type="text/css"> </head>I don’t understand it because yesterday it worked with the normal HTML embedding.
Forum: Themes and Templates
In reply to: CSS not loadingIs it right this way?:
<link rel=”stylesheet” href=”<?php include( get_stylesheet_directory() . ‘/wp-content/themes/myTheme/style.css’); ?>” type=”text/css”>