Hej John
Tak for svarene. Jeg fik noget bedre overblik over access og de forskellige funktioner.
Nu ser access sådan her ud i mit stylesheet:
/* Menu*/
/* Changed constant background color to red */
#access {
background: #E0001A;
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;
}
#access ul {
font-size: 13px;
list-style: none;
margin: 0 0 0 -0.8125em;
padding-left: 0;
}
#access li {
float: left;
position: relative;
}
#access a {
color: #eee;
display: block;
line-height: 3.333em;
padding: 0 1.2125em;
text-decoration: none;
}
#access ul ul {
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
display: none;
float: left;
margin: 0;
position: absolute;
top: 3.333em;
left: 0;
width: 188px;
z-index: 99999;
}
#access ul ul ul {
left: 100%;
top: 0;
}
/* Changes sub pages into red background, when you hover main */
#access ul ul a {
background: #E0001A;
border-bottom: 1px dotted #ddd;
color: #FFF;
font-size: 13px;
font-weight: normal;
height: auto;
line-height: 1.4em;
padding: 10px 10px;
width: 168px;
}
/* Changes color of sub page to blue, when you hover it */
#access li:hover > a,
#access ul ul :hover > a,
#access a:focus {
background: #002D3C;
}
/* Changes main page's color to blue, when you hover it */
#access li:hover > a,
#access a:focus {
background: #002D3C; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#002D3C, #002D3C);
background: -o-linear-gradient(#002D3C, #002D3C);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#002D3C), to(#002D3C)); /* Older webkit syntax */
background: -webkit-linear-gradient(#002D3C, #002D3C);
color: #FFFFFF;
}
#access ul li:hover > ul {
display: block;
color: #FFFFFF;
}
#access .current_page_item > a,
#access .current_page_ancestor > a {
font-weight: bold;
}
Og resultatet er her.
Jeg har også ændret på margin og width for den temastruktur, jeg har valgt (sidebar i højre side):
/* Right Content */
.left-sidebar #primary {
float: right;
margin: 0 0 0 -26.4%;
width: 100%;
}
/* Margin from 34& to 22.7% and width from 58.4 to 65%*/
.left-sidebar #content {
margin: 0 7.6% 0 22.7%;
width: 65%;
}
/*margin from 7.6% to 4%*/
.left-sidebar #secondary {
float: left;
margin-left: 3%;
margin-right: 0;
width: 18.8%;
}
Her er mit problem dog, at access nu sidder længere til højre end sidebaren. Hvordan kan jeg rykke pages i menubjælken længere mod højre?
Tusind tak for hjælpen.