4 Answers, 1 is accepted
0
Shinu
Top achievements
Rank 2
answered on 13 Feb 2014, 11:13 AM
Hi Amigo,
Please have a look into the following code snippet to decrease the space between groups of RadTileList.
ASPX:
CSS:
Thanks,
Shinu.
Please have a look into the following code snippet to decrease the space between groups of RadTileList.
ASPX:
<telerik:RadTileList ID="RadTileList1" runat="server"> <Groups> <telerik:TileGroup Name="Tile1"> <telerik:RadTextTile ID="RadTextTile1" runat="server" Text="Text1"> </telerik:RadTextTile> </telerik:TileGroup> <telerik:TileGroup Name="Tile2"> <telerik:RadTextTile ID="RadTextTile2" runat="server" Text="Text2" CssClass="TileSpace"> </telerik:RadTextTile> </telerik:TileGroup> </Groups></telerik:RadTileList>CSS:
<style type="text/css"> .TileSpace { margin-left: -150px !important; }</style>Thanks,
Shinu.
0
Amigo
Top achievements
Rank 1
answered on 13 Feb 2014, 11:33 AM
Thanks for reply. but its destroy my layout. i want spaces between groups. not tiles.
0
Shinu
Top achievements
Rank 2
answered on 17 Feb 2014, 04:13 AM
Hi Amigo,
Please try the following CSS to achieve your scenario.
CSS:
Thanks,
Shinu.
Please try the following CSS to achieve your scenario.
CSS:
<style type="text/css"> .rtlistGroup { width: 100px !important; }</style>Thanks,
Shinu.
0
Amigo
Top achievements
Rank 1
answered on 17 Feb 2014, 04:26 AM
Thanks Shanu.
this code help me. and my app is work fine
.RadTileList_MyCustomSkin .rtlistScrollWrapper .rtlistGroupSeparator {
height:430px;
width:0px;
margin-right:5px;
margin-left:15px;
}
this code help me. and my app is work fine
.RadTileList_MyCustomSkin .rtlistScrollWrapper .rtlistGroupSeparator {
height:430px;
width:0px;
margin-right:5px;
margin-left:15px;
}