{NAV_ROW:40:0} PROBLEME MIT DESIGN!!!

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
benusa
Posts: 42
Joined: Sat 30. Sep 2006, 16:19

{NAV_ROW:40:0} PROBLEME MIT DESIGN!!!

Post by benusa »

hallo zusammen!

habe folgendes problem.
benutze im footer folgende navigation:

Code: Select all

<div id="footer"><br>{NAV_ROW:40:0}</div>
mein css sieht wie folgt aus:

Code: Select all



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

.articleText { 
	margin-bottom: 3px;
	text-align: justify;
}

.articleCode {
	margin-bottom: 3px;
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
}

.articleSummary {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 135%;
}

.nav_table, .nav_table a, .nav_table a:link, .nav_table a:active, .nav_table a:visited, .nav_table a:hover {
	font-family:"Times New Roman", Times, serif;
	font-size: 11px;
	color: #BDBDBD;
	font-weight: normal;
	text-decoration: none;
}
.nav_table a:hover {
	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:"Times New Roman", Times, serif;
	font-size: 11px;
	color: #505050;
	font-weight: normal;
	text-decoration: none;
}

.articleList_toptext {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
}

.articleList_listhead {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;
	font-weight: bold;
}


/* CSS for the top level list */
ul.list_top, ul.list_level {
	padding: 3px 0;
	margin-left: 0;
	border-bottom: 1px solid #5E747F;
	font: bold 12px Verdana, sans-serif;
}
ul.list_top li, ul.list_level li {
	list-style: none;
	margin: 0;
	display: inline;
	padding: 0;
}
ul.list_top li a, ul.list_level li a {
	padding: 3px 0.5em;
	margin: 0px;
	border: 1px solid #778;
	border-bottom: none;
	background: #D7DEE5;
	text-decoration: none;
}
ul.list_top li a:link, ul.list_level li a:link { color: #5E747F; }
ul.list_top li a:visited, ul.list_level li a:visited { color: #5E747F; }
ul.list_top li a:hover, ul.list_level li a:hover {
	color: Black;
	background: #92A1AF;;
	border-color: #227;
}
ul.list_top li.active a, ul.list_level li.active a {
	background: white;
	border-bottom: 1px solid white;
}


#VisualModeIndicator {
	position:absolute;
	left:5px;
	bottom:5px;
	padding:5px;
	z-index:10000;
	background-color:#FF3300;
	color:#FFFFFF;
	border:1px solid #000000;
}

das ist nur ein kleiner teil aber eben der teil, in dem links formatiert werden.
ich habe hier !!!nirgends!!! ein UNDERLINE drinn, darum verstehe ich nicht warum sie trotzdem unterstrichen sind.
das komische ist, setze ich z.b bei ACTIVE die text-decoration auf NONE, wird beim drüberfahren auch keine unterstreichung angezeigt, nur der standartmässige, unbesuchte oder besuchte oder aktive link ist unterstrichen!!!
farben kann ich auch ändern, ich weiss nicht was los ist!

ich drehe durch, auch im conf.template_default.inc habe nirgends! mehr ein underline drin...

ausserdem, ändere ich die links im css sind auch die links in artikel betroffen, es sollte doch aber auch möglich sein die links direkt für die nav_row navigation anzusprechen, funktioniert ja bei nav_table (

Code: Select all

.nav_table_active, .nav_table_active a, .nav_table_active a:link...
) nicht anderst...!

kann mir jemand helfen?


liebe
grüsse

benusa[/code]
pepe
Posts: 3954
Joined: Mon 19. Jan 2004, 13:46

Post by pepe »

ich drehe durch, auch im conf.template_default.inc habe nirgends! mehr ein underline drin...
Durchdrehen ist ganz schlecht :roll:

Schau besser mal hier:
// row based navigation
$template_default["nav_row"]["before"] = '<div class="navRow">';
$template_default["nav_row"]["after"] = '</div>';
Da kannst du ja eine eigene Klasse reinschreiben... und die dann in der css vollkommen kurz und hagel klein formatieren :wink:

Hast du ggf eine class .footer in der frontend.css ??? Und da ist eine eigene Formatierung für die Mouseovers enthalten???
benusa
Posts: 42
Joined: Sat 30. Sep 2006, 16:19

Post by benusa »

DANKE PEPE!

Klappt alles wunderbar!

merci!!!!


lg
benusa
Post Reply