除了stylesheet.css之外,我应该为OpenCart模板更新修改哪些CSS文件?

时间:2016-02-13 18:19:48

标签: html css opencart

刚开始看到OpenCart,我有一个简单的任务:更改默认模板标题内的几个元素的位置。但是我遇到了一个问题,即stylesheet.css中缺少某些类和id。我还应该更新哪些模板更改?目前我有这样的事情:

Modification result 它奇怪地跳了起来。为什么?

<nav id="top">
  <div class="container">
    <div id="top-links" class="nav pull-right">
      <ul class="list-inline">
        <li><a href="<?php echo $contact; ?>"><i class="fa fa-envelope"></i><span class="hidden-xs hidden-sm hidden-md"> <?php echo $text_contact; ?></span></a></li>
        <li><?php echo $language; ?></li>
        <li><?php echo $currency; ?></li>
        <li class="dropdown"><a href="<?php echo $account; ?>" title="<?php echo $text_account; ?>" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-user"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $text_account; ?></span> <span class="caret"></span></a>
          <ul class="dropdown-menu dropdown-menu-right">
            <?php if ($logged) { ?>
            <li><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a></li>
            <li><a href="<?php echo $order; ?>"><?php echo $text_order; ?></a></li>
            <li><a href="<?php echo $transaction; ?>"><?php echo $text_transaction; ?></a></li>
            <li><a href="<?php echo $download; ?>"><?php echo $text_download; ?></a></li>
            <li><a href="<?php echo $logout; ?>"><?php echo $text_logout; ?></a></li>
            <?php } else { ?>
            <li><a href="<?php echo $register; ?>"><?php echo $text_register; ?></a></li>
            <li><a href="<?php echo $login; ?>"><?php echo $text_login; ?></a></li>
            <?php } ?>
          </ul>
        </li>
        <li><a href="<?php echo $wishlist; ?>" id="wishlist-total" title="<?php echo $text_wishlist; ?>"><i class="fa fa-heart"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $text_wishlist; ?></span></a></li>
        <li><a href="<?php echo $shopping_cart; ?>" title="<?php echo $text_shopping_cart; ?>"><i class="fa fa-shopping-cart"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $text_shopping_cart; ?></span></a></li>
        <li><a href="<?php echo $checkout; ?>" title="<?php echo $text_checkout; ?>"><i class="fa fa-share"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $text_checkout; ?></span></a></li>
        <li> <?php echo $search; ?></li>
      </ul>
    </div>
  </div>
</nav>

我应该为解决问题提供哪些其他信息?

1 个答案:

答案 0 :(得分:0)

如果您在 OpenCart 2.x 中使用theme/default,则使用的其他样式表是 Bootstrap Font Awesome ,如您在catalog/view/javascript/中所见,位于theme/default/template/common/header.tpl