在我的homesite我有汽车幻灯片。我的问题是,幻灯片显示在“Vitajte!”段下的下一行(或我应该说的块)。我想在“Vitajte”段落旁边播放幻灯片!在右侧。这是link on my CSS。请求帮助:)
答案 0 :(得分:1)
只需添加:
float:left;
到div#welcome;
答案 1 :(得分:0)
我建议您对CSS进行以下更改,并使段落正确对齐。
CSS:
div#welcome {
display: inline;
height: 148px;
margin-top: 0;
text-align: right;
width: 290px;
}
修改强>
如果您想将段落保持在同一位置并将幻灯片内容与段落内联,则需要在float:left
div#welcome
对于实例,
div#welcome {
float:left;
}
希望这就是你要找的东西。
答案 2 :(得分:0)
div#welcome
{
float: left;
}
将上面的css添加到div中,这会将滑块移到右侧。如果要将滑块向下移动一点并向左移动,请添加
.ppy-placeholder
{
margin-top: 55px !important;
width: 450px !important;
}