• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Does anyone know how to stop a background image from tiling in HTML?

UnatcoAgent

Diamond Member
You know in your body tag when you have <body background="whatever.jpg"> is there a way to stop that image from tiling over and over again and just appear once ?

Thanks guys.
 
stick it in a table is one method....you would get more help if you stopped asking tech questions in off topic.

I know I come here to get away from work and I am sure others do too.
 
yeah, you would use CSS... you would have the property

BACKGROUND-REPEAT: no-repeat

ive only gotten this to work in internet explorer though 😕
 
I would say just use a table and put the image in that, like so:

<table>
<tr>
<td>
<img src="yourimage.jpg">
</td>
</tr>
</table>

I haven't tried style sheets myself, however so I don't know how well that works.
 
Originally posted by: Encryptic
I would say just use a table and put the image in that, like so:

<table>
<tr>
<td>
<img src="yourimage.jpg">
</td>
</tr>
</table>

I haven't tried style sheets myself, however so I don't know how well that works.

Yah that's what I'm doing actually, but I'd like to have text overtop of the actual images, but still in HTML. CSS looks like the answer, thanks again.
 
Originally posted by: che3che
yeah, you would use CSS... you would have the property

BACKGROUND-REPEAT: no-repeat

ive only gotten this to work in internet explorer though 😕

whoa first post evar!
 
Back
Top