vinnyocc 
 Active Member Posts: 31

 |
| 09/07/2006 03:13 PM |
|
Hey V!
I am writing because I have an old problem with the skin.
In the Rich Text Editor on DNN 3.3.4 I am able to see the background as I type and the text I type is centered.
Neither of these issues are causing great pain and neither effect the more public side of the website from what I can tell.
Here is a screenshot. Enjoy!
_Vince
|

|
|
|
|
Vasilis 
 Yellow Member Posts: 315
 |
| 09/07/2006 06:01 PM |
|
Hey Vince!
I have noticed this issue with the last version of DNN. All skins that use a background color or a background image for the body tag, this CSS style will be applied also to the Rich Text Editor... the same for the text-align:center.
I have created a workaround to fix that. You have to edit the skin's CSS file...
This line:
html,body{background:url(media/bgcolor.gif) 50% 0 repeat-y #D9DAD2;margin:0;padding:0;height:100%;text-align:center;}
has to be replaced with the following lines:
html,body{background:#FFF;margin:0;padding:0;height:100%;} html,#body{background:url(media/bgcolor.gif) 50% 0 repeat-y #D9DAD2;text-align:center;} #__dnn_body{background:#FFF;}
Let me know if you have any problem to apply that or if you find any other issues.
Cheers,
Vasilis T. |
|
|
|
|
vinnyocc 
 Active Member Posts: 31

 |
| 09/08/2006 03:21 PM |
|
| I still seem to be having some problems. I am editing the certain css files which I am using? I edited sophiticted.css yet it didnt fix the problem. |
|
|
|
|
Vasilis 
 Yellow Member Posts: 315
 |
| 09/20/2006 09:20 AM |
|
Hey Vince, did you have any progress with that?
I studied the issue and I think that the only real solution is to apply the background color or image and the text-align:center CSS styles to a page wrapper DIV instead of the body tag.
|
|
|
|
|
vinnyocc 
 Active Member Posts: 31

 |
| 09/22/2006 03:11 PM |
|
Sorry for the slow response. I have been busy.
I have found that I am still get the font lined up still in the center. SO some where it is inheriting the font attribute. The background is no longer an issue!
Thanks for asking |
|
|
|
|