2014-11-05 33 views
0

的在下面的圖,有一個人可以建議CSS的float樣式來將按鈕右手上側頁

我需要定位登錄和註冊按鈕向上

使用浮動的權利 - 我能夠定位按鈕在頁面的右側

.discuss-main-list div.tab-content div.tab-pane.active.discussPostsList.DS06485251280568793 div#mod_improved_ajax_login-93 a.logBtn.selectBtn {  float:right } 

.discuss-main-list div.tab-content div.tab-pane.active.discussPostsList.DS06485251280568793 div#mod_improved_ajax_login-93 a.regBtn.selectBtn {  float:right } 

但如何定位這些按鈕下面的問上的紅色矩形部分的提問按鈕

可有人蘇ggest如何實現相同

網站

http://www.mycarhelpline.com/index.php?option=com_easydiscuss&view=index&category_id=0&Itemid=78 

enter image description here

+0

你能告訴我們更多的CSS嗎?上述部分(即新車,財務等)是否會變高?關閉我的頭頂部,我將容器設置爲「position:relative」,然後將按鈕設置爲「position:absolute」。然後設置按鈕的頂部和右側位置,將它們放在所需的位置。 – ezekielDFM 2014-11-05 14:12:06

+0

我在理解語法方面有些困難。 你可以發佈一個截圖,但編輯它,以顯示你想如何看頁面? – sanepete 2014-11-05 14:18:30

+0

@sanepete - 感謝您花時間查看它。我已經添加了一個清晰的需要什麼圖片。你能建議在所需的位置登錄和註冊按鈕在標記的位置。 – Ruchika 2014-11-05 14:27:26

回答

1

的登錄的代碼粘貼和註冊按鈕(只是注意風格的標籤我加的):

<div id="mod_improved_ajax_login-93" style="text-align:right"> 
 
    <a href="/index.php?option=com_users&amp;view=login" onclick="return false" class="logBtn selectBtn"> 
 
    <span class="loginBtn leftBtn"> 
 
     Log in 
 
    </span> 
 
    <span class="loginBtn rightBtn">&nbsp; 
 
     <img width="10" height="7" alt="\/" src="modules/mod_improved_ajax_login/themes/elegant/images/arrow.png">&nbsp; 
 
    </span> 
 
    </a> 
 
    <a href="/index.php?option=com_users&amp;view=registration" class="regBtn selectBtn "> 
 
    <span class="loginBtn leftBtn"> 
 
     Register 
 
    </span> 
 
    <span class="loginBtn rightBtn">&nbsp; 
 
     <img width="10" height="7" alt="\/" src="modules/mod_improved_ajax_login/themes/elegant/images/arrow.png">&nbsp;</span> 
 
    </a> 
 
</div>

在以下DOM路由中:div.navbar.discuss-toolbar.DS0014929228160620589.wide> div.navbar-inner> div.nav-collapse.collapse> ul.nav.pull-右鍵,粘貼</ul >標籤後的按鈕並在整理前標記</div >標記。

根據您的需要,您可以用style =「float:right」替換style =「text-align:right」。

希望它有幫助!

+0

謝謝,作品非常好 – Ruchika 2014-11-09 03:56:05