Hallo,
ich wil anklickbare Buttons auf den Slider legen.
Aber jedoch nur auf der Frontpage. hatte jetzt folgenden CSS code dafür gedacht:
#buttonwrapper {
position:absolute;
top:35px;
left:240px;
width:150px;
height:550px;
z-index:1;
}
.buttons {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#6b6b6b 0%,
#000000);
background: -webkit-gradient(
linear, left top, left bottom,
from(#6b6b6b),
to(#000000));
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
border: 1px solid #000000;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.7);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.7);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.7);
text-shadow:
0px -1px 0px rgba(000,000,000,0.4),
0px 1px 0px rgba(255,255,255,0.3);
}
und als code:
<div id="buttonwrapper">
<button type="button" name="" value="" class="buttons">Button1</button>
<button type="button" name="" value="" class="buttons">Button2</button>
<button type="button" name="" value="" class="buttons">Button3</button>
<button type="button" name="" value="" class="buttons">Button4</button>
</div>
</div>
Komme aber zu keiner Lösung. habt ihr einen ansatz?
LG und einen schönen 4. Advent














