Hi,
When I'm setting the "GridType" property to "Fluid", it isn't fitting the full width on Chrome.
It works as expected on IE8 but not with Chrome, I always have a left and right margin.
Is there a way to fix this issue ?
Thanks, Rémi.
4 Answers, 1 is accepted
0
Hi, Remi.
That's something expected -- the grid has a maximum width of 1280px.
But since many of our customer reflect on this behaviour, perhaps we could do something to fix this.
Regards,
Ivan Zhekov
Telerik
That's something expected -- the grid has a maximum width of 1280px.
But since many of our customer reflect on this behaviour, perhaps we could do something to fix this.
Regards,
Ivan Zhekov
Telerik
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items
0

Rémi
Top achievements
Rank 1
answered on 30 Jul 2015, 06:56 AM
Thanks for your reply,
Is there a workaround to make the grid to fill the full width ?
Rémi.
0
Hi Rémi,
The following CSS code snippet will reset the max-width property:
Regards,
Magdalena
Telerik
The following CSS code snippet will reset the max-width property:
@media only
screen
and (
min-width
:
1281px
) {
html .t-container {
max-width
:
none
;
}
}
Regards,
Magdalena
Telerik
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items
0

Rémi
Top achievements
Rank 1
answered on 03 Aug 2015, 09:42 AM
Perfect thank you.
Rémi.