dhodgdon
Posts: 80
|
| Posted: 08/05/2004, 5:53 AM |
|
I want a background graphic to fill the login page. I used the background property for the body to set it. The problem is using this causes tiling of the image. I want only the image top left justified.
In general, I can't figure out in CCS how to place forms, grids, etc. on top of graphics. How can this be done? (This is probably the better question to ask.)
Thanks
_________________
Regards,
David Hodgdon
|
 |
 |
Walter Kempees
|
| Posted: 08/05/2004, 11:26 AM |
|
This is a HTML or CSS (not CCS) question, grin ;-p
In the HTML of the page:
<body leftmargin="0" bgcolor="#FFFFFF" topmargin="0" marginwidth="0"
marginheight="0" background="image/back-tach-col.jpg" bgproperties="fixed">
background-repeat: no-repeat
just for a fast reply.
Walter
Googled: http://www.htmlcodetutorial.com/document/_BODY_BACKGROUND.html
"dhodgdon" <dhodgdon@forum.codecharge> schreef in bericht
news:641122dba54f24@news.codecharge.com...
> I want a background graphic to fill the login page. I used the background
> property for the body to set it. The problem is using this causes tiling
of
> the image. I want only the image top left justified.
>
> In general, I can't figure out in CCS how to place forms, grids, etc. on
top of
> graphics. How can this be done? (This is probably the better question to
> ask.)
>
> Thanks
> _________________
> ____________________
> David Hodgdon
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
dhodgdon
Posts: 80
|
| Posted: 08/05/2004, 6:46 PM |
|
Okay...I am new to HTML authoring...I checked the googled link suggested as well as others, but it looks to me that CCS does not allow me to use the background-repeat property. I can't get any of the examples to make any difference.
_________________
Regards,
David Hodgdon
|
 |
 |
Walter Kempees
|
| Posted: 08/06/2004, 12:46 AM |
|
Send it and I'll have a look over the weekend.
just zip, virus check and mail me kempe819 at planet dot nl
With pleasure.
Walter
"dhodgdon" <dhodgdon@forum.codecharge> schreef in bericht
news:64112e3016d544@news.codecharge.com...
> Okay...I am new to HTML authoring...I checked the googled link suggested
as well
> as others, but it looks to me that CCS does not allow me to use the
> background-repeat property. I can't get any of the examples to make any
> difference.
> _________________
> ____________________
> David Hodgdon
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Walter Kempees
|
| Posted: 08/06/2004, 12:48 AM |
|
Afterthought, you are doing ASP right?
Hope that is not some reason for handling HTML differently, but then again
why should it.
I'll happily have a look
W
"dhodgdon" <dhodgdon@forum.codecharge> schreef in bericht
news:64112e3016d544@news.codecharge.com...
> Okay...I am new to HTML authoring...I checked the googled link suggested
as well
> as others, but it looks to me that CCS does not allow me to use the
> background-repeat property. I can't get any of the examples to make any
> difference.
> _________________
> ____________________
> David Hodgdon
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Walter Kempees
|
| Posted: 08/10/2004, 11:27 AM |
|
This was solved by adding an table around the existing table.
The table was then set to a fixed size, centered, background set to image
no-repeat.
<table width="800px" align="center"
background="images/Login_Page_Graphic.jpg" bgproperties="fixed"
background-repeat: no-repeat>
Walter
Just to end the thread.
"dhodgdon" <dhodgdon@forum.codecharge> schreef in bericht
news:641122dba54f24@news.codecharge.com...
> I want a background graphic to fill the login page. I used the background
> property for the body to set it. The problem is using this causes tiling
of
> the image. I want only the image top left justified.
>
> In general, I can't figure out in CCS how to place forms, grids, etc. on
top of
> graphics. How can this be done? (This is probably the better question to
> ask.)
>
> Thanks
> _________________
> ____________________
> David Hodgdon
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|