I am using a rad window to display a web url, setting what I want specifically through the css as far as the size of it. This however is not working.
MarkUp
Css
If I set the width/height through the markup, I am able to get the desired effect. As I am building this with responsive design, this will not work for me. I thought it could possibly be the the Url links I was pointing to, but have tried it with many other outside sources and it is not working with them as well.
Firebug shows that my css is rending, however, it looks to still be applying the default css (not class name or style page show either for this, just a straight element). Here is what it is showing.
Any insight would be appreciated.
MarkUp
<
telerik:RadWindow
ID
=
"ViewOurCatalogsRadWindow"
runat
=
"server"
Behaviors
=
"Close"
BorderStyle
=
"None"
KeepInScreenBounds
=
"true"
IconUrl
=
"/Images/JJIcon16x16.jpg"
CssClass
=
"view-our-jewelry-catalog-window"
VisibleStatusbar
=
"false"
Animation
=
"Slide"
Style
=
"z-index: 9000;"
>
</
telerik:RadWindow
>
Css
.view-our-jewelry-catalog-window
{
width
:
600px
!important
;
height
:
600px
!important
;
}
If I set the width/height through the markup, I am able to get the desired effect. As I am building this with responsive design, this will not work for me. I thought it could possibly be the the Url links I was pointing to, but have tried it with many other outside sources and it is not working with them as well.
Firebug shows that my css is rending, however, it looks to still be applying the default css (not class name or style page show either for this, just a straight element). Here is what it is showing.
element.style {
height
:
300px
;
left
:
491px
;
position
:
absolute
;
top
:
85px
;
visibility
:
visible
;
width
:
300px
;
z-index
:
9000
;
}
Any insight would be appreciated.