0

大家好,想知道我是否可以在我的网站上获得一些帮助。这是针对电子商务的单项作业,我使用了一个模板。我已经获得了一个 Javascript 代码来跟踪篮子中的物品数量和成本,但我无法很好地显示它。

它与“购物车”位于同一行,或者如果我使用<br>位于标题菜单部分下方。

http://i.imgur.com/PjX4VtB.png 让您了解我的意思

header.php 的代码

        <h1 id="logo"><a href="index.html">Pet Accessories</a></h1> 

    <!-- Cart -->
    <div id="cart">
        <a href="managecart.html" class="cart-link" >Your Shopping Cart</a>
        <br />
        <script language="javascript" >
            if ( Cart_is_empty()) {
                document.write('Your cart is empty.');
            } else {
                Print_total_products(true);
                document.write(', ');
                Print_total(true);
            }
        </script>

    </div>

    <!-- End Cart -->

    <!-- Navigation -->
    <div id="navigation">
        <ul>
            <li><a href="index.html" class="active">Home</a></li>
            <li><a href="#">About Us</a></li>
            <li><a href="#">Contact</a></li>
        </ul>
    </div>
    <!-- End Navigation -->

相关 style.css 的代码

    #header { height:64px; background:url(images/header.gif); position:relative;}
    #navigation { float:right; white-space:nowrap; }
    #navigation ul{ list-style-type: none; height:64px; font-weight: bold; float:left;}
    #navigation ul li{ float:left; display:inline; }
    #navigation ul li a{ float:left; height:64px; line-height:64px; text-decoration: none; color:#fff; padding:0 15px;}
    #navigation ul li a.active,
    #navigation ul li a:hover{ background:#fff; color:#8b0000; }

    #cart { float:right; width:160px; top:0; right:0; height:51px; background:#8b0000; color:#fff; padding:13px 10px 0 10px; white-space:nowrap; line-height:38px;}
    a.cart-link { color:#fff; background:url(images/cart-link.gif) no-repeat 0 0; padding:0 0 0 32px; text-decoration: none;}
    a.cart-link:hover { text-decoration: underline;}

    #sidebar { float:left; width:226px;}
    #content { float:right; width:724px;}

    #main { padding:10px 0 0 0; }

我试图提供尽可能多的信息,任何帮助将不胜感激。我不知道我是否需要修改 .css 文件或使用其他类型的<br>来让我的文本显示在正确的位置。

谢谢

杰米

4

2 回答 2

0

#cart元素的行高为 38px。删除它。

您可能想要做的另一件事是删除<br />标签以使它们位于同一行。

请注意,160 像素的宽度是不够的。您应该使其更高(也更改所有其他元素的宽度)或white-space:nowrap;#cart元素中删除。

于 2013-05-30T05:23:00.750 回答
0

将 #cart 中的高度更改为 min-height (以及顶部的其余部分)或将其完全删除。

如果您必须将其置于该固定高度,请将 #cart 中的 line-height 更改为足够小以使其适合。

于 2013-05-30T05:26:06.593 回答