更改侧面导航以显示在右侧

时间:2013-09-03 09:50:11

标签: jquery css jquery-plugins

我正在使用sidetap (click here to find the jquery plugin)。我已经让它工作,但是我想让导航出现在右边,而不是左侧,这是默认的。

这是我使用的骨架

    <div class="sidetap">
        <div class="stp-nav" id="notification-sidebar">
          <div>
            <nav>
              <a href="#" class="selected">Selected Nav Item</a>
              <a href="#">Second Nav Item</a>
              <a href="#">Third Nav Item</a>
              <a href="#">Fourth Nav Item</a>
            </nav>
          </div>
        </div>

        <div class="stp-content" id="content">
            <!-- content goes here -->
        </div>

    </div>

以下是我使用的jquery:

    // Initialize Sidetap for notification
    var st = sidetap();
    $("#navigation-btn").on("click", st.toggle_nav);

1 个答案:

答案 0 :(得分:0)

只需添加:

.sidetap {
    float:right;
}