[HTML] Menü bei Oyla

Carina
Hallo, weiß jemand wie man bei Oyla sowohl die Schriftart, als auch die Farbe ändert? Und wie bekommt man es hin, dann die Links schwarz bleiben?
evanescence*
Arbeitest du denn mit HTML oder mit den 'normalen' Tools?
Carina
beides, aber kann man das menü mit html bearbeiten?
Schatti
Ja das ist in deinem Grundocde drinne.
Carina
in welchem grundcode? also auf den textseiten selbst bekomm ich die links ja schwarz aber im menü eben nicht
One.of.my.lies
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
<!-- Start Grundcode by diehomepage-hilfe.dl.am and thequietplace.dl.am -->
                                                                        <html> 
                                                                        <head> 
                                                                        
                                                                        <title>%titel%</title>
                                                                        
                                                                        <style type="text/css">
                                                                        <!--
                                                                        body {
                                                                        scrollbar-face-color: #5f9ea0;
                                                                        scrollbar-highlight-color: #00000;
                                                                        scrollbar-3dlight-color: ##000000;
                                                                        scrollbar-darkshadow-color: #000000;
                                                                        scrollbar-shadow-color: ##000000;
                                                                        scrollbar-arrow-color: ##000000;
                                                                        scrollbar-track-color: #ffffff;
                                                                        }
                                                                        a:link {
                                                                        color: #000000; 
                                                                        text-decoration:none;
                                                                        } 
                                                                        a:visited {color: #000000; 
                                                                        text-decoration:none;
                                                                        } 
                                                                        a:active {color: #000000; 
                                                                        text-decoration:none;
                                                                        } 
                                                                        a:hover {color: #000000; 
                                                                        text-decoration:none;
                                                                        } 
                                                                        --> 
                                                                        </style>
                                                                        </head> 
                                                                        
                                                                        
                                                                        <body bgcolor="#ffffff" topmargin="0" leftmargin="0">
                                                                        
                                                                        
                                                                        <!-- Start Design -->
                                                                        
                                                                        <img border="0" src=bildurl scroll="no" bgproperties="fixed" 
                                                                        ALIGN="left" STYLE="position: absolute; top: 0; left: 0" width="1024" height="768"> 
                                                                        
                                                                        <!-- End Design -->
                                                                        
                                                                        
                                                                         
                                                                        
                                                                        <!-- Start Content -->
                                                                        
                                                                        <div style="overflow: auto; position: absolute; width: 540px; height: 529px; left: 194px; top: 229px"> 
                                                                        <font face="Comic" size="2" color="#000000">%content%</font> 
                                                                        </div> 
                                                                        
                                                                        <!-- End Content -->
                                                                        
                                                                        
                                                                        
                                                                        <!-- Start Navigation -->
                                                                        
                                                                        <div style="overflow: auto; position: absolute; width: 130px; height: 256px; left: 12px; top: 283px"> 
                                                                        <font face="Comic" size="2" color="#2f4f4f">%navigation_v%</font> 
                                                                        </div> 
                                                                        
                                                                        <!-- End Navigation -->
                                                                        
                                                                        
                                                                        </body>
                                                                        </html>
                                                                        <!-- End Grundcode by diehomepage-hilfe.dl.am and thequietplace.dl.am 


immer unter dem Frames kannst du die Farbe ändern
oder am Anfang bei der CSS
Carina
ohje

code:
1:
2:
<html>                  <head>                 <title>%titel%</title>                </head>                               
    <img border="0" src="http://www.oyla15.de/userdaten/93810948/bilder/TurnierstallHohenfelde.png" scroll="no" bgproperties="fixed"                  ALIGN="left" STYLE="position: absolute; top: 0; left: 0" width="1024" height="768">                                  <div style="overflow: auto; position: absolute; width: 700; height: 400; left: 309; top: 250">%content%</div>                                  <div style="overflow: auto; position: absolute; width: 150; height: 327; left: 100; top: 393">%navigation_v%</div>                                </html> 


das ist der code der mir für das design gegeben wurde.
Carina
mag mir niemand helfen?
Schatti
Der Code von oben was One.of.my.lies dir gegeben hat ist der ganze Code.

Hier verstellst du die Navigationsschriftfarben:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
a:link {
color: #0000ff;
text-decoration:none;
}
a:visited {color: #0000ff;
text-decoration:none;
}
a:active {color: #ffffff;
text-decoration:none;
}
a:hover {color: #000000;
text-decoration:none;


Schriftart verändertst du hier und auch gleichzeitig die Schriftfarbe (Da steht jetzt Arial dran und das änderst du) (und der eine Hexwert da gerade #0000 ist die Schriftfarbe und da kommt dan die Farbe hin die du haben willst)
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
<!-- Start Content -->
<div style="overflow: auto; position: absolute; width: 630px; height: 220px; left: 330px; top: 260px">
<span style="font-family:Arial; font-size:16px; color:#000000">%content%</span>
</div>
<!-- End Content -->

<!-- Start Navigation -->
<div style="overflow: auto; position: absolute; width: 185px; height: 220px; left: 40px; top: 260px">
<span style="font-family:Arial; font-size:16px; color:#000000">%navigation_v%</span>
</div>
<!-- End Navigation -->