I have a .aspx/web form that uses the Rad Decorator. I am using one of the Responsive frameworks on the page and have constructed a menu using ul/li that will morph into a combo box when the page width decreases past a certain point. This is all working fine.
I would like to use the RadComboBox for the mobile-sized menu container but I cannot seem to control visibility of the RadComboBox during page size changes using the normal method of doing so from media queries -- see below.
When I try to use the styles, they appear to have no effect whatsoever on the RadComboBox. I have tried telling the Rad Decorator to ignore SELECT controls to no avail.
Is there a way through the CSS that I can control the visibility of the RadComboBox when the RadDecorator is being used?
Thanks in advance!
Lynn
I would like to use the RadComboBox for the mobile-sized menu container but I cannot seem to control visibility of the RadComboBox during page size changes using the normal method of doing so from media queries -- see below.
nav select { display: none;}nav RadComboBox { display: none; }@media (max-width: 800px) { nav ul { display: none; } nav select { display: inline-block; } nav RadComboBox { display: inline-block; }}When I try to use the styles, they appear to have no effect whatsoever on the RadComboBox. I have tried telling the Rad Decorator to ignore SELECT controls to no avail.
Is there a way through the CSS that I can control the visibility of the RadComboBox when the RadDecorator is being used?
Thanks in advance!
Lynn