开发者

how to put menubar below the banner

开发者 https://www.devze.com 2023-01-07 18:51 出处:网络
My menubar show on my banner... It stacks. Can you tell me how to put menubar below the banner? <body>

My menubar show on my banner... It stacks. Can you tell me how to put menubar below the banner?

<body>
<style type="text/css">
        * { margin:0 auto;
            padding:0;
            }
                html { background:#ffffff; }
                body{
                         width:1600px;
                         height:800px;
   开发者_StackOverflow                      overflow:auto;
                         background:#ffffff;
                        }
                div#menu {
                                margin:40px 0 0 95px;
                                text-align:center;
                                position:absolute;
                                }
                div#menu span {
                                font-size:22px;
                                padding-left:14px;
                                }
</style>

<?php
//include('menu.php');
include('menu_inc.htm');
?>      
<img src="bannersketch.png" border="0">

</body>


Well the reason it is stacking is you have position:absolute;. Try putting the <img> tag above the php include and remove the absolute positioning and see if that helps.

0

精彩评论

暂无评论...
验证码 换一张
取 消