css - Moving my sharepoint site title from left to right -


i have modified master page move site collection title body, inside upper suite bar. move following h1 div code inside suite bar div follow:-

<div id="suitelinksbox"> <sharepoint:delegatecontrol id="id_suitelinksdelegate" controlid="suitelinksdelegate" runat="server" /> </div>      <h1 id="pagetitle" class="ms-core-pagetitle" style="color:white;float:left">       <sharepoint:ajaxdelta id="deltaplaceholderpagetitleintitlearea" runat="server">         <asp:contentplaceholder id="placeholderpagetitleintitlearea" runat="server">             <sharepoint:sptitlebreadcrumb                   runat="server"                   rendercurrentnodeaslink="true"                       sitemapprovider="spcontentmapprovider"                   centraladminsitemapprovider="spxmladmincontentmapprovider">             <pathseparatortemplate>               <sharepoint:clustereddirectionalseparatorarrow runat="server" />             </pathseparatortemplate>           </sharepoint:sptitlebreadcrumb>         </asp:contentplaceholder>       </sharepoint:ajaxdelta>       <sharepoint:ajaxdelta blockelement="true" id="deltaplaceholderpagedescription" cssclass="ms-displayinlineblock ms-normalwrap" runat="server">         <a href="javascript:;" id="ms-pagedescriptiondiv" style="display:none;">           <span id="ms-pagedescriptionimage">&#160;</span>         </a>         <span class="ms-accessible" id="ms-pagedescription">           <asp:contentplaceholder id="placeholderpagedescription" runat="server" />         </span>         <sharepoint:scriptblock runat="server">           _spbodyonloadfunctionnames.push("setuppagedescriptioncallout");         </sharepoint:scriptblock>       </sharepoint:ajaxdelta>     </h1> 

the result site title (in case dicusion forum) on right side of screen although have defined float:left h1 div, there way move left beside logo ?

enter image description here

can advice please, if know how ?

pagetitle {position: absolute; left: 400px; top: 30px} work fine


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -