Inwiefern? Kannst du die Tabelle umstellen oder wird sie vom Drittanbieter generiert?
Beiträge von djheke
-
-
Googel mal nach FlexBox oder alternativ nach Display:table.
-
Keine Ahnung was mit dem Preis ist, aber ich habe es mal etwas aufgeräumt. Alles weitere kannst du dem Quelltext entnehemen.
http://www.gipspferd.de/forumhilfe/tabelle-shop/ -
.column-1 , .column-2 , .column-3 {
position:relative;
}.box-buttons {
position:absolute;
bottom:0;
} -
Ach, jetzt sehe ich es erst.
header_image() ist ja eine Funktion. Upps! -
Bin mir jetzt niicht sicher. Aber setz mal ein Slash vorm dein Pfad src="/logo.png". Wenn dein Logo im Rootverzeichnis liegt. Vielleicht klappt's ja.
-
Na, wenn kein Inhalt , dann alles weiß.
HTML
Alles anzeigen<!DOCTYPE html> <html> <head> <title>HTML Versuche</title> <meta charset="UTF-8"> <link href="stylesheet.css" type="text/css" rel="stylesheet"> </head> <body> <table> <tr> <td>Hallo</td> </tr> </table> </body> </html>
CSSCode[COLOR=#000000][COLOR=#0000BB]body [/COLOR][COLOR=#007700]{ [/COLOR][COLOR=#0000BB]background[/COLOR][COLOR=#007700]:[/COLOR][COLOR=#0000BB]url[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]Images[/COLOR][COLOR=#007700]/[/COLOR][COLOR=#0000BB]csgo[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]png[/COLOR][COLOR=#007700]) repeat 0 0 #f00; [/COLOR][COLOR=#FF8000] [/COLOR][COLOR=#007700]} [/COLOR][/COLOR]
So sollte dein Hintergrundbild angezeigt werden.
-
Mit einer serverseitigen Programmier bzw. Scriptsprache wie bspw. PHP.
-
Slash reicht aus. Mit Punkt wird's auf dein Server wohl nicht funktionieren. Oder du hast eine Singlepage.
-
-
-
Also, wenn du die den aktuellen Frame Speicherst, dann sollte es funktionieren. Bei mir geht's.
-
Eintrag gelöscht.
-
Was bist du denn für ein süßes A...?
-
-
Versuch's mal so.
Code
Alles anzeigen#dnav { background:#fafafa; width: 900px; display:table; } #dnav ul { list-style: none; float:left; padding: 0px; margin: 0px; display: block; } #dnav li { width:100px; display:table-cell; border-right: 1px solid #dfdfdf; /*vertical-align:middle*/; } #dnav a{ text-decoration: none; display:block; color: #919191; text-align:center; padding:10px; }
-
Deine Dateien müssen die Endung php haben, sonst wird kein php ausgeführt.
Aus .nav a.active mache #nav a.active
Du musst die pageID durchnummerieren 1 , 2 , 3 , 4 sonst sind alle links markiert.index.php
PHP
Alles anzeigen<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8"> <title>aktiv</title> <style> * { margin:0; padding:0; list-style: none; text-decoration:none; } #nav { width: 100%; float:left; margin-bottom:20px; } #nav li { float:left; width:90px; } #nav a { display:block; color:#000; padding:5px; text-align:center; font-weight:bold; } #nav a.active { color: #FFF; background-color: black; } </style> </head> <body> <?php if (!isset($_GET['page'])) { $_GET['page'] ="1";}?> <div id="nav"> <ul> <li><a href="/?page=1"<?php if ($_GET['page'] == '1') echo ' class="active"'; ?> >Link1</a></li> <li><a href="/?page=2"<?php if ($_GET['page'] == '2') echo ' class="active"'; ?> >Link2</a></li> <li><a href="/?page=3"<?php if ($_GET['page'] == '3') echo ' class="active"'; ?> >Link3</a></li> </ul> </div> <?php include($_GET['page'].".inc"); // Dateien 1.inc , 2.inc , 3.inc einbinden?> </body> </html>
-
Traurig, dass dein Chef kein Warenwirtschftsprogramm hat.
-
Zu 1. keine Ahnung. Ohne den gesamten Code kann dir keiner helfen.
Zu 2. so sparst du dir den .col100 Container. -
Googel kann helfen. Auch zum Thema clearfix. Wenn man was will, ist lesen sehr hilfreich.
Aber hier eine kleine Änderung.