| Rank: Newbie Groups: Member
 
 Joined: 2/15/2011
 Posts: 6
 
 | 
		    Hi, Please see following screen:  This is my code:
 
    
        Code: HTML/ASPX
         <%@ Page Language="C#" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" dir="rtl">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <eo:TabStrip RightToLeft="true" runat="server" ID="TabStrip1" ControlSkinID="None" Width="400px">
            <TopGroup>
                <Items>
                    <eo:TabItem Text-Html="Themes">
                    </eo:TabItem>
                    <eo:TabItem Text-Html="Desktop">
                    </eo:TabItem>
                    <eo:TabItem Text-Html="Screen Saver">
                    </eo:TabItem>
                </Items>
            </TopGroup>
            <LookItems>
                <eo:TabItem ItemID="_Default" RightIcon-Url="00010223" RightIcon-SelectedUrl="00010226"
                    NormalStyle-CssText="color: #606060" SelectedStyle-CssText="color: #2f4761; font-weight: bold;"
                    LeftIcon-Url="00010221" LeftIcon-SelectedUrl="00010224" Image-Url="00010222"
                    Image-SelectedUrl="00010225" Image-Mode="TextBackground" Image-BackgroundRepeat="RepeatX">
                    <SubGroup Style-CssText="font-family: tahoma; font-size: 8pt; background-image: url(00010220); background-repeat: repeat-x; cursor: hand;"
                        OverlapDepth="8">
                    </SubGroup>
                </eo:TabItem>
            </LookItems>
        </eo:TabStrip>
        <div style="border-right: #c9c9c9 1px solid; padding-right: 5px; padding-left: 5px;
            padding-bottom: 5px; border-left: #c9c9c9 1px solid; width: 388px; padding-top: 5px;
            border-bottom: #c9c9c9 1px solid; height: 300px; 5px: ">
            <eo:MultiPage runat="server" ID="MultiPage1">
                <eo:PageView ID="PageView1" runat="server">
                    Page 1
                </eo:PageView>
                <eo:PageView ID="Pageview2" runat="server">
                    Page 2
                </eo:PageView>
                <eo:PageView ID="Pageview3" runat="server">
                    Page 3
                </eo:PageView>
            </eo:MultiPage>
        </div>
    </div>
    </form>
</body>
</html> | 
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Hi,
 You need to swap the tab item's LeftIcon-Url and RightIcon-Url (in your LookItems -> _Default). The default LeftIcon/RightIcon images are for left to right.
 
 Thanks
 |