0

我的主页有一个部分,当以我正在处理的屏幕尺寸以外的屏幕尺寸查看时,它会改变位置。我认为这与位置元素有关,但我不确定它应该设置为什么或应该放置在我的 CSS 中的什么位置。

我想保留在同一个地方的部分是一个 jquery 图像转换,它显示在图像内的导航菜单下方。请参阅下面的 HTML 和 CSS 以获取更多参考。

谢谢你的帮助

在此处输入图像描述

HTML:

<body>
<div id="top_bar">
<div id="top_inner">
<div id="logo"> <a href="http://www.edosbornephotography.com"><img src="images/logo.gif" alt="Ed Osborne" width="225" height="115" class="logo"></a></div>
<div class="nav">
<ul class = "menu" >
            <li> <a href = "#" > Home </a> </li>
            <li><a href = "#" > Packages </a>
            <li><a href = "#" > Weddings </a>
            <li><a href = "#" id="left" > Lifestyle </a>
        <ul class = "submenu" >
            <li> <a href = "#" > Families </a> </li>
            <li> <a href = "#"> Newborn/Child </a> </li>
            <li> <a href = "#" > Portraits </a> </li>
        </ul>
        </li>

        <li> <a href = "#" > Blog </a> </li>
        <li><a href = "#" id="left"> Abous Us </a>
        <ul class = "submenu" >
        <li> <a href = "#" > Ed Osborne </a> </li>
        <li> <a href = "#" > Testimonials </a> </li>
        <li> <a href = "#" > FAQs </a> </li>
        </ul>
        </li>

        <li> <a href = "#" > Contact Us </a> </li>
        <li> <a href = "#" > Links </a> </li>
        </ul>
    </div>
</div>
</div>

<div id="main">  

<div id="smart-gallery">
    <a href="images/cubagallery-img-1.jpg">
        <img src="images/cubagallery-img-1.jpg" /></a> 

    <a href="images/cubagallery-img-15.jpg">
        <img src="images/cubagallery-img-15.jpg" /></a> 

    <a href="images/cubagallery-img-3.jpg">
        <img src="images/cubagallery-img-3.jpg" /></a> 

    <a href="images/cubagallery-img-4.jpg"></a>
        <img src="images/cubagallery-img-4.jpg" /></a>
</div>

</div>

CSS:

#top_bar {
width: 100%;
height: 145px;
background: #000000;
padding-bottom: 20px;
}

#top_inner {
text-align: center;
margin: 0 auto;
width: 1000px;
height: 144px;
}

.nav {
margin: 0 auto;
position: relative;
padding-top: 100px;
}

ul.menu {
list-style: none;
margin: 0;
float: left;
background: #222;
font-size: 1.2em;
background: url(../images/topnav_bg.gif) repeat-x;
}

ul.menu li {
float: left;
margin: 0;  
position: relative; 
}

ul.menu li span { 
width: 11px;
height: 35px;
float: left;
background: url(../images/subnav_btn.gif) no-repeat center top;
}

.min-gallery
{
width: 927px;
height: 615px;
border: solid 1px black;
background-color: Black;
background: url(../images/bg.jpg);
margin: auto;
margin-left: 232px;
}

.min-gallery .preview
{
width: 852px;
height: 493px;
margin-top: 36px;
margin-left: 36px;
margin-right: 36px;
position: relative;
border: solid 2px black;
overflow: hidden;
background-color: White;
}

.min-gallery .preview img
{
width: 795px;             
height: 525px;
position: absolute;
}

.min-gallery .bottom
{
width: 100%;
height: 98px;
color: Gray;
font-family: Arial;
font-size: 1em;
font-weight: bold;
overflow: hidden;
}
4

2 回答 2

2

您的 html 代码不包含任何具有min-gallery类的元素...但是如果您将其更改为带有智能画廊的 min-gallery:

.smart-gallery
{
    width: 927px;
    height: 615px;
    border: solid 1px black;
    background-color: Black;
    background: url(../images/bg.jpg);
    margin: auto;
    margin-left: 232px; <- remove
}
.smart-gallery...
于 2012-09-16T13:35:18.443 回答
1

您可以使用百分比而不是像素来定位图库。更好的方法是使用 css 媒体查询,这样当窗口发生变化时,div 的大小和位置也会发生变化。

这里没有足够的信息让我编写任何伪代码,而且我无法加载您的网站。但以下网站应该让您朝着正确的方向开始。

快速提示媒体查询速成课程

自适应布局

于 2012-09-16T13:37:23.193 回答