views:

28

answers:

1

Hi, I have problem with implementing Rich Text Editor (all that i tried, e.g. TinyMCE). I tried many tutorials and articles but all same. When i am trying do it the best what i get is working editor in IE (8) but other browser not (Opera, FF, Chrome). Samples that i download work fine in all browsers. I am using VS2010 ASP.NET MVC2 and e.g. i tried this http://www.billsternberger.net/asp-net-mvc/tinymce-samples-with-asp-net-mvc/ Thanks for help

A: 

Its is probably a problem finding the images.

Locate your theme css and edit all the background:url to show the path that you have place the img.

background:url(img/button_bg.png)

for example, in every page that you use the TinyMCE, the img/button_bg.png must be found.

If you are in /MyDir/MyPage.aspx
and the file are on /themes/advanced/skin/default/img/buttons.png

there is not way to found the buttons from my page with the code url(img/button_bg.png)

Aristos