响应式菜单不应该在哪里

时间:2014-08-29 13:04:58

标签: css

我刚刚把我的菜单设置为一个响应式菜单,但现在它已经失去了我的位置,我如何将它设置回应该的位置我不想要重新设置所有其他css代码只是得到tbis坐在它应该的地方我很抱歉我写的不是我的强点

/*Strip the ul of padding and list styling*/
ul {
list-style-type:none;
margin:0;
padding:0;
position: absolute;
}

/*Create a horizontal list with spacing*/
li {
display:inline-block;
float: left;
}

/*Style for menu links*/
li a {
display:block;
width:100%;
height: 50px;
text-align: center;
line-height: 50px;
color: #fff;
background: #000000;
text-decoration: none;
font-size: 18pt;
font-weight: bold;
padding-right: 15px;
}

/*Hover state for top level links*/
li:hover a {
background: #00FFFF;
}

/*Style for dropdown links*/
li:hover ul a {
background: #000000;
color: #FFFFFF;
height: 40px;
line-height: 40px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
background: #00FFFF;
color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
display: none;
}

/*Make dropdown links vertical*/
li ul li {
display: block;
float: none;
}

/*Prevent text wrapping*/
li ul li a {
width: auto;
min-width: 100px;
padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-decoration: none;
color: #fff;
background: #000000;
text-align: center;
padding: 10px 0;
display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
/*Make dropdown links appear inline*/
ul {
    position: static;
    display: none;
}
/*Create vertical spacing*/

/*Make all menu links full width*/
ul li, li a {
    width: 100%;
}
/*Display 'show menu' link*/
.show-menu {
    display:block;
}
}

指向我网站的链接,看看它有什么问题,因为我不知道如何将图像添加到此www.slchandy.co.uk/prototype/booking.php

1 个答案:

答案 0 :(得分:0)

这里有2个选项;

选项1:

在您的预订页面上,您使用的是不同的样式表?菜单ID的名称不同。

将div名称更改回原来的名称并包含您的css文件。

选项:2

像这样更改ul的css;

ul {
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: static;
    width: 100%;
}

悬停菜单;

ul li ul {
    float: none;
    position: absolute;
    width: auto;
   }