希望文字在扩展移动菜单时保持其位置

时间:2015-07-04 13:35:06

标签: html5 wordpress css3 genesis

在下图中有一个名为" VISITAR LA TIENDA"的文字,我希望即使我展开Mobile菜单也能保持固定。我正在使用Genesis Magazine Pro Theme。

enter image description here

正如您在下图所示,在展开移动设备菜单时会显示下来。

enter image description here

我正在使用此CSS代码,但它无效

margin-top: -213px;
position: static;
margin-left: 200px;
font-weight: bold;
font-size: 27px;

1 个答案:

答案 0 :(得分:0)

为标题尝试以下样式:

.title-text { 
    top: 205px; 
    position: absolute; 
    width: 100%, 
    text-align: center, 
    z-index: -1;
    margin: 0;
} 

您需要在移动视图上调整间距等,尽管这可以通过媒体查询轻松完成。