Log in

View Full Version : logo in message window


ambumann
08-11-2004, 04:17 PM
I'm trying to use my forum logo as background in the message editor by customizing the WYSIWYG-editor in the Style Manager. Is there a way I can format or adjust the logo (by code) or is this a static function?

What I need is to fit the logo to the text box and center it/adjust it to a corner. If I have to adjust the image size of the file I'm using, what is the size to use?

Dean C
08-11-2004, 05:44 PM
I've moved your thread to the appropriate forum. The 'Modifications Hints & Tips' forum is for people to share their hints and tips, not for people to ask questiosn :) Thanks, Dean.

AN-net
08-11-2004, 07:19 PM
can't u simply place an image in the text area of reply/new thread/edit by using the CSS in the style manager?

ambumann
08-11-2004, 07:53 PM
can't u simply place an image in the text area of reply/new thread/edit by using the CSS in the style manager?

Hints on how a newbie can do this?

AN-net
08-11-2004, 07:58 PM
background-image:
url("/images/bgdesert.jpg")

put that in the textbox for textarea background in stylevar for the style you desire.

ambumann
08-11-2004, 08:09 PM
background-image:
url("/images/bgdesert.jpg")

put that in the textbox for textarea background in stylevar for the style you desire.

OK. I'll try that. Thanks! :)

ambumann
08-11-2004, 09:39 PM
Couldn't get the last tip to work in any way, but by using the style manager and code
url(images/blek-logo.GIF) align="center"
I kinda made it anyway. The only matter now is adjusting...

alsaqr
08-12-2004, 06:08 PM
This is the way:

Style Manager --> Main CSS --> Input Fields (Customized in this Style)
you will find a box: Extra CSS attributes , put this code in it :

#FFFFFF; background-image: url("put your image URL here")

Thats all :)

Natch
08-12-2004, 11:26 PM
Not exactly - find the WYSIWYG Editor style and add the following after the #abcxyz colour definition for background: url(images/blek-logo.gif) top center no-repeatYou will need to match your image dimensions to that box ($stylevar[formwidth]) - if you have it set to auto, then you will need to just have a play with the size until you are happy with it.

ambumann
08-14-2004, 10:42 AM
Not exactly - find the WYSIWYG Editor style and add the following after the #abcxyz colour definition for background: url(images/blek-logo.gif) top center no-repeatYou will need to match your image dimensions to that box ($stylevar[formwidth]) - if you have it set to auto, then you will need to just have a play with the size until you are happy with it.


Thank you! :D