Dear Evan Herman,
On the right track….
when I put this code into my child-theme….
/* =Menu
————————————————————– */
#access {
background: #9a7529;
background: -moz-linear-gradient(top, #9a7529 0%, #0a0a0a 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9a7529), color-stop(100%,#0a0a0a));
background: -webkit-linear-gradient(top, #9a7529 0%,#0a0a0a 100%);
background: -o-linear-gradient(top, #9a7529 0%,#0a0a0a 100%);
background: -ms-linear-gradient(top, #9a7529 0%,#0a0a0a 100%);
background: linear-gradient(to bottom, #9a7529 0%,#0a0a0a 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#9a7529′, endColorstr=’#0a0a0a’,GradientType=0 );
}
The website looks great on all 3 platforms…. Sarfari/Chrome/Firefox…
EXCEPT it is missing the Menu Bar….
so can you guide me where to go from here?????
This was the previous one:
/* =Menu
————————————————————– */
#access {
background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#9A7529, #0a0a0a);
background: -o-linear-gradient(#9A7529, #0a0a0a);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from (#9A7529, to (#9A7529)); /* older webkit syntax */
background: -webkit-linear-gradient(#9A7529, #000000);
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
clear: both;
display: block;
float:left;
margin: 2auto 0px;
width: 100%;
SORRY FOR THE LONG WINDED POST!
M