Hallo,
an erster Stelle bin neu hier und muss sagen echt ein hübsches Board.
Zu meinem Problem. Ich bin ein Amateur was HTML etc. angeht. Habe ein Portfolio erstellt, gesliced und soweit programmiert. Nun habe ich folgendes Problem. Alles geht, aber nur eins nicht so wie ich es haben möchte.
Ich möchte gerne die Schriftgröße selber festlegen wie groß Sie sein sollte, jedoch geht es nicht. Der aktuelle Schriftgröße ist zu groß.
Link: CarTeL-Media Portfolio
Code:
PHP
- <?php
- global $onsite;
- $onsite = 1;
- ?>
- <html>
- <head>
- <title>CarTeL-Media Portfolio</title>
- <style type="text/css">
- body { background-color:#222222; color:#ffffff; font-family:Tahoma,Arial; font-size:8px; }
- #main { width:800px; margin:0 auto; }
- #heady { background:url("images/headerbg.png"); height:111px; width:100%; }
- #navi { width:248px; float:right; }
- #logo { width:552px; float:left; }
- #trennlinie1,#trennlinie2 { background:url("images/strich.png"); height:15px; width:100%; }
- #content { padding:10px 0 10px 0; }
- img { border:none; }
- </style>
- </head>
- <table width="800"><tr><td width="350">
- <script type="text/javascript">
- adscale_slot_id="MWZjZGMw";
- </script>
- <script type="text/javascript" src="http://js.adscale.de/getads.js"></script>
- </td>
- <td width="450">
- <body>
- <div id="main">
- <div id="heady">
- <div id="logo">
- <img src="images/logo.png"></img>
- </div>
- <div id="navi">
- <table cellspacing="0" cellpadding="0">
- <tr><td><a href="index.php?page=home"><img src="images/home.png" alt="Home" onmouseover="this.src='images/home_hover.png';" onmouseout="this.src='images/home.png';" /></a></td>
- <td><a href="index.php?page=ueberuns"><img src="images/ueberuns.png" alt="Über uns" onmouseover="this.src='images/ueberuns_hover.png';" onmouseout="this.src='images/ueberuns.png';" /></a></td>
- <td><a href="index.php?page=leistungen"><img src="images/leistungen.png" alt="Leistungen" onmouseover="this.src='images/leistungen_hover.png';" onmouseout="this.src='images/leistungen.png';" /></a></td>
- <td><a href="index.php?page=referenzen"><img src="images/referenzen.png" alt="Referenzen" onmouseover="this.src='images/referenzen_hover.png';" onmouseout="this.src='images/referenzen.png';" /></a></td>
- <td><a href="index.php?page=links"><img src="images/links.png" alt="Links" onmouseover="this.src='images/links_hover.png';" onmouseout="this.src='images/links.png';" /></a></td>
- <!--<td><a href="index.php?page=kontakt"><img src="images/kontakt.png" alt="Kontakt" onmouseover="this.src='images/kontakt_hover.png';" onmouseout="this.src='images/kontakt.png';" /></a></td>!-->
- <td><a href="index.php?page=impressum"><img src="images/impressum.png" alt="Impressum" onmouseover="this.src='images/impressum_hover.png';" onmouseout="this.src='images/impressum.png';" /></a></td></tr>
- </table>
- </div>
- </div>
- <div id="trennlinie1"></div>
- <div id="content">
- <?php
- Switch($_GET['page']) {
- Case 'ueberuns':
- include('pages/ueberuns.php');
- break;
- Case 'referenzen':
- include('pages/referenzen.php');
- break;
- Case 'leistungen':
- include('pages/leistungen.php');
- break;
- Case 'links':
- include('pages/links.php');
- break;
- Case 'kontakt':
- include('pages/kontakt.php');
- break;
- Case 'impressum':
- include('pages/impressum.php');
- break;
- Default:
- include('pages/home.php');
- break;
- }
- ?>
- </div>
- <div id="trennlinie1"></div>
- <center>Copyright © CarTeL-Media 2010
- </td>
- </tr></table>
- </div>
- </body>
- </html>
Ich würde mich sehr über ein Lösungsweg freuen.