Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Right-align Last Sharepoint (WSS) Tab
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered Right-align Last Sharepoint (WSS) Tab

Feed from this thread
  • Doug avatar

    Posted on May 14, 2008 (permalink)

    Hello,

    Can anyone tell me how to right-align just the last tab on the tabstrip?  The datasource for the tabstrip is the Sharepoint Top Nav.  I want all tabs normally from left-to-right, less the last tab which I want to appear as far right as the remaining space provides.

    Cheers,

    Doug

  • Answer Paul Paul admin's avatar

    Posted on May 15, 2008 (permalink)

    Hi Doug,

    Please try using the follwoing CSS class in the head tag of the page.

    <style type="text/css">  
    .tabstrip .last  
    {  
        float: right;  
    }  
    </style> 


    Greetings,
    Paul
    the Telerik team

    Instantly find answers to your questions at the new Telerik Support Center

  • Doug avatar

    Posted on May 15, 2008 (permalink)

    Thank you , Paul.  That worked perfectly.

  • ketan avatar

    Posted on Mar 10, 2011 (permalink)

    Hello paul
    It does't work for me.
    Please can you help me on this. I customized the master page using spd and I copy and past this code but nothing happen???

  • Kalina Kalina admin's avatar

    Posted on Mar 16, 2011 (permalink)

    Hello Doug,

    What are the versions of SharePoint and RadControls for ASP.NET AJAX that you use?

    Regards,
    Kalina
    the Telerik team
    Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!

  • Doug avatar

    Posted on Mar 16, 2011 (permalink)

    Hi Kalina,

    I mainly use WSS 3.0, but I'm about to make the transition to 2010.  I use RadControls_for_ASP.NET_AJAX_2009_2_701_dev within my default.master (eqv.), and RadControls_Q3_2008_dev within the application.master (eqv.).  I'm not sure what will be required for 2010, but I could use some insight.  Do I need to buy a different version/package?

    I hope this helps.

    Cheers,

    Doug

  • Kalina Kalina admin's avatar

    Posted on Mar 22, 2011 (permalink)

    Hello,

    You can align the last RadTabStrip tab to the right by adding these styles in "<head>" section of your master page:
    div.RadTabStrip .rtsLast 
        float: right
    }
    .RadTabStrip .rtsLevel1 .rtsUL  
    {
        width: 100%
    }

    Kind regards,
    Kalina
    the Telerik team

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Right-align Last Sharepoint (WSS) Tab