|
Rank: Member Groups: Member
Joined: 6/18/2007 Posts: 15
|
Hi Support Team,
I have a quick question regarding about background image.
<eo:MenuItem Height="25"
SelectedStyle-CssText="background-image:url("00000003");color:#215DC6;background-position-x: right; background-repeat: no-repeat;background-color:white;">
I am trying to add my own custom image in the background-image:url for open arrow and close arrow.
<eo:MenuItem Height="25"
SelectedStyle-CssText="background-image:url(../images/menuOpenArrow.jpg);color:#215DC6;background-position-x: right; background-repeat: no-repeat;background-color:white;">
Its not displaying my own custom image in the menu. I think it always look for 0000010 some number image. It will be great if you let me know how can I add my own custom image in the background-image url?
Thanks in Advance.
thanks, Ram.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi Ram,
Thanks for posting your question here. I don't think you can use relative path in background image. For some reason IE doesn't like it. You would have to use an absolute path such as "/images/menuOpenArrow.jpg". Please try that and see if it works.
Thanks
|
|
Rank: Member Groups: Member
Joined: 6/18/2007 Posts: 15
|
Hi tried that. It didn't work. I tried following options:-
background-image:url(/images/menuOpenArrow.jpg);
background-image:url('/images/menuOpenArrow.jpg');
background-image:url(c:/inetpub/wwwroot/project/images/menuOpenArrow.jpg);
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
The third one definitely will not work. In order to test the first and the second, you want to try it on a regular HTML element first. Try to put this in your .aspx:
Code: CSS
<style type="text/css">
.test { background-image:url(your_image_path_here); }
</style>
Code: HTML/ASPX
<div className="test">
test div
</div>
And try to get that work first. If that doesn't work, then there is something wrong with your image path.
|
|
Rank: Member Groups: Member
Joined: 6/18/2007 Posts: 15
|
Thanks Admin. It works finally after chaning right image directory.
|
|