jeg er ved at sætte CMS Made Simple op - for første gang. Bedst som jeg tilpassede mit CSS for topmenuen holdt CSSen op med at virke for venstremenuen - som jeg overhovedet ikke har rørt ved. Jeg har ledt med lys og lygte efter hvad jeg kan have gjort galt, men kan ikke finde nogle ændringer eller fejl. Den eneste fil jeg rørte ved da den holdt op med at virke var CSSen for topmenuen så fejlen må ligge der. Hvilket jeg ikke kan forstå. I får lige koden for top-cssen:
Vh
Robert
Code: Select all
/********************
MENU
*********************/
/* hack for Internet Explorer */
* html div#menu_horiz {
/* hide ie/mac \*/
height: 1%;
/* end hide */
}
/*
background-color for the entire menu row,
covering 100% of the width and text center-aligned
*/
div#menu_horiz {
width: 100%;
margin: 0;
}
/*
the menu ul box has top and left border,
right border is provided by the li elements
*/
div#menu_horiz ul {
margin: 0;
padding: 0;
border-bottom: 0 solid #c0c0c0;
border-left: 0 solid #c0c0c0;
height:2.2em;
}
/* menu list items */
div#menu_horiz li {
float: left; /* makes the list horizontal */
list-style: none; /* hides the list bullet */
margin: 0 ;
border-right: 1px solid #C0C0C0;
}
/* the links, that is each list item */
div#menu_horiz a {
padding: .6em 1em .6em 1.4em; /* padding inside the list item box */
margin: 0; /* margin outside each list item box */
text-decoration: none; /* no underline for links */
color: #18507C;
background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; ;
display: block; /* IE has problems with this, fixed above */
}
/* hover state for links */
div#menu_horiz li a:hover {
background-color: #C3D4DF;
}
div#menu_horiz a.activeparent:hover {
background-color: #C3D4DF;
color: #18507C;
}
/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
background: #385C72 url(images/cms/arrow-down.gif) no-repeat 0.4em center;
color: #fff;
}
div#menu_horiz h3 {
padding: .6em 1em .6em 1.4em; /* padding inside the list item box */
margin: 0; /* margin outside each list item box */
text-decoration: none; /* no underline for links */
color: #fff;
background: #385C72 url(images/cms/arrow-right-active.gif) no-repeat 0.4em center; ;
display: block; /* IE has problems with this, fixed above */
font-size: 1em; /* instead of the normal font size for <h3> */
}