Page 1 of 1

Alle Links sind IMMER unterstrichen :-(

Posted: Tue 4. Apr 2006, 17:37
by andalucia
Hallo,
habe jetzt für eine neue Site 126 und die ersten Basics installiert(4. PHPWCMS-Seite)
Während des editierens hatte ich Netzabbrüche(inconsistent bitstreaming) und jetzt sind ALLE Links unterstrichen:
siehe http://www.apartamentos-alcazar.at/cms/ ... hp?english

Nicht nur das Menu, sondern auch zB emailadressen oder websites.
Auch mit dem Editor lässt sich das Unterstrichene in Texten nicht wegnehmen was normalerweise geht.

Die CSS und conf.template_default.inc.php sehen eigentlich OK aus.

Woran kann das noch hängen das Links jetzt immer unterstrichen ist?
Ich denke irgendwo hat es da ein Zeichen geschossen....
Gruss
Klaus


_________________________________________________________
CSS:
a, a:link, a:visited, a:active, a:focus {
color: #FF3300;
text-decoration: none
}
a:hover {
color: #FF3300;
text-decoration: underline;
}

conf.template_default.inc.php :
$template_default["nav_table_struct"]["cell_width"] = "100%";
$template_default["nav_table_struct"]["cell_height"] = "15";
$template_default["nav_table_struct"]["cell_class"] = "nav_table";
//
$template_default["nav_table_struct"]["cell_active_width"] = "100%";
$template_default["nav_table_struct"]["cell_active_height"] = "15";
$template_default["nav_table_struct"]["cell_active_class"] = "nav_table_active"; //
//
$template_default["nav_table_struct"]["js_over_effects"] = 1;
$template_default["nav_table_struct"]["all_nodes_active"] = 1;
//
$template_default["nav_table_struct"]["linkimage_norm"] = '<img src="img/article/nav_link_0.gif" alt="" border="0">';
$template_default["nav_table_struct"]["linkimage_over"] = '<img src="img/article/nav_link_1.gif" alt="" border="0">';
$template_default["nav_table_struct"]["linkimage_active"] = '<img src="img/article/nav_link_2.gif" alt="" border="0">';
//
$template_default["nav_table_struct"]["row_norm_bgcolor"] = "#FFFFFF"; // #F0D88C #FED1A5 Menuhintergrund
$template_default["nav_table_struct"]["row_norm_class"] = "";
//
$template_default["nav_table_struct"]["row_over_bgcolor"] = "#FF9900"; // #FF9900 #FED1A5 #AAB7C1
$template_default["nav_table_struct"]["row_active_bgcolor"] = "#F0D88C"; // #FFFFFF"
$template_default["nav_table_struct"]["row_active_class"] = "";
//
$template_default["nav_table_struct"]["row_space"] = 1;
$template_default["nav_table_struct"]["row_space_bgcolor"] = "#FF6600"; // #4A5966 Menuvordergrund

Posted: Tue 4. Apr 2006, 17:45
by pepe
.nav_table, .nav_table a, .nav_table a:link, .nav_table a:active, .nav_table a:visited, .nav_table a:hover {
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 10px;
color: #4A5966;
font-weight: normal;
text-decoration: none;
}
.nav_table a:hover {
color: #4A5966;
font-weight: normal;
text-decoration: none;
}

.nav_table_active, .nav_table_active a, .nav_table_active a:link, .nav_table_active a:active, .nav_table_active a:visited, .nav_table_active a:hover {
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 10px;
color: #4A5966;
font-weight: bold;
text-decoration: none;
}

Posted: Tue 4. Apr 2006, 18:07
by andalucia
Hi pepe,
genau das ist mein Problem - es ändert nix.
Habe es händisch editiert, deinen code reingepasted, alles völlig wurscht.
Es ist da irgendwo ein default entstanden auf IMMER underline, egal was mein einstellt.
Da kann man verrückt werden.

Habe jetzt auch ne frontend.css einer anderen website eingespielt, ändert auch nix.

Posted: Tue 4. Apr 2006, 18:24
by sunflower
Hallo,

hast Du vielleicht irgenwelche Rechte nicht gesetzt?
Bitte alle mal überprüfen!



Gruß

sunflower

Posted: Tue 4. Apr 2006, 18:33
by andalucia
Rechte sind alle gesetzt.

Inzwischen habe ich auch die conf.template_default.inc.php und frontend.css
der installation -jungfräulich von der HD- ftped. Ändert auch nix. Daran kann es eigentlich nicht mehr liegen.
Wo kann man da nochwas einstellen?

Posted: Tue 4. Apr 2006, 18:56
by erich_k4
look at your html source!

you are using the menubar.css instead of frontend.css

Code: Select all

<link rel="stylesheet" type="text/css" href="phpwcms_template/inc_css/menubar.css">
goto the template section and choose the "frontend.css" for your template

Image

that should do the trick...

Posted: Tue 4. Apr 2006, 19:08
by andalucia
I LOVE YOU Erich!

Must have happend when editing and touching the Mousewheel.

Looks very much better now. Problem solved. Thank you!