CSS - skriftstørrelsen skal tvinges
HejsaJeg har en CSS fil som mine sider på hjemmesiden referere til. Desværre er der kommet en lille ulempe.
Mine links vises på alle sider som en lille skrifttype/format. På forsiden vises en række nyheder. Disse nyheder er links og vises derfor også som lille skrifttype/format, som jeg har bestemt links skal gøre.
Jeg ønsker dog, at disse overskrifter (h2) skal være som mit format i h2 er - men hvordan gør jeg det??
index.php --->
<?php
include('administration/access/access_config.php');
$query = mysql_query("SELECT id,title,image,synopsis,writer,DATE_FORMAT(date,'%e/%c-%Y %T') AS date FROM news ORDER BY id DESC LIMIT 2") or die(mysql_error());
while ($row = mysql_fetch_assoc($query)) {
if ($i++ != 0) echo '<div class="hr"></div>';
echo '<h2><a href="news.display.php?id='.$row['id'].'">'.$row['title'].'</a></h2>';
echo $row['synopsis'];
echo '<br><br><font size="1,5">Skrevet af '.$row['writer'].', '.$row['date'].'</font>';
}
?>
.CSS --->
body {
background-color: #FFFFFF;
}
a:link {
font-size: 11px;
font-family: verdana;
color: #000000;
}
a:visited {
font-size: 11px;
font-family: verdana;
color: #000000;
}
a:hover {
font-size: 11px;
font-family: verdana;
color: #000000;
}
a:active {
font-size: 11px;
font-family: verdana;
color: #000000;
}
.hr {
font-size: 0;
height: 0;
margin: 2px 0 2px 0;
border-top: 1px solid #000;
clear: both;
}
table.tabelmedbund {
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-bottom-color: #1F5858;
}
.menu-topbottom {
font-size: 10px;
color: #000000;
font-family: verdana;
}
.menu-topbottom
a:link {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-topbottom
a:visited {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-topbottom
a:hover {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-topbottom
a:active {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-left {
font-size: 11px;
color: #000000;
font-family: verdana;
line-height: 1.8em;
}
.menu-left
a:link {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-left
a:visited {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-left
a:hover {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
.menu-left
a:active {
font-size: 11px;
font-family: verdana;
color: #000000;
text-decoration: none;
}
H1 {
MARGIN-TOP: 4px;
MARGIN-BOTTOM: 0px;
FONT: 24px Georgia;
FONT-WEIGHT: normal;
PADDING-BOTTOM: 5px;
}
H2 {
MARGIN-TOP: 3px;
MARGIN-BOTTOM: 0px;
FONT: 18px Georgia;
FONT-WEIGHT: normal;
PADDING-BOTTOM: 3px;
}
.text {
font-size: 11px;
COLOR: #000000;
font-family: Verdana;
}
.adresse {
FONT: 11px Arial;
FONT-WEIGHT: normal;
}
.copyright {
FONT: 9px Arial;
FONT-WEIGHT: normal;
COLOR: #999;
}
.hr {
font-size: 0;
height: 0;
margin: 2px 0 2px 0;
border-top: 1px solid #000;
clear: both;
}
// Super-mann
