PDA

View Full Version : upload an Image for Background..help!


NatalieMarie87
03-13-2009, 02:51 PM
I just started using vbulletin, can anyone tell me how to put an image as the background in my forum, my website is www.comeboca.com, i redid that same background image in paint, and now i want to upload it as the background for my forum....this is what my forum looks like now..www.comeboca.com/forums

Lynne
03-13-2009, 02:55 PM
You would need to include it in the css in Style Manager > Main CSS... probably under Page Background

Here's a page on background properties - CSS Background Properties (http://www.w3schools.com/css/css_background.asp)

NatalieMarie87
03-13-2009, 03:16 PM
I dont even undertand it, what am i supposed to do?

Lynne
03-13-2009, 03:23 PM
Well, most likely you are talking about adding a background image to the Page Background. So, in the Background field, you would have something like what is shown in that page:
#00ff00 url('smiley.gif') no-repeat fixed center

NatalieMarie87
03-13-2009, 03:24 PM
ok got it! thanks now how can i add a border to the whole body including the header?

Lynne
03-13-2009, 03:26 PM
Borders would go into the box that says "Extra CSS Attributes". You would put in something like:

border: 1px solid #0B198C;

NatalieMarie87
03-13-2009, 03:47 PM
ok im so sorry to keep asking things but you know so much, if you see my forum page, my header for some reason is aligned differently than the body, do you know of any way i can fix that?

Lynne
03-13-2009, 04:15 PM
I don't see a header on this page - http://www.comeboca.com/forums

NatalieMarie87
03-13-2009, 04:19 PM
ok sorry i mean the logo image inside a long dark grey bar at the top

Lynne
03-13-2009, 04:22 PM
Sorry, but I don't see it. This is what I see:
96375


edit: The path for your image should be "images/Header.jpg", not "images\Header.jpg"

NatalieMarie87
03-13-2009, 05:03 PM
ok thank you, i fixed it now, can you see it? i dont understand why the alignment is different

Lynne
03-13-2009, 06:26 PM
It looks the same on your forums as it does on your home page.

mcrider
03-13-2009, 06:40 PM
In your header try changing

<!-- logo -->
<a name="top"></a>
<table border="0" width="998" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left"><a href="index.php"><img src="images/Header2.jpg" border="0" alt="Comunidad ComeBoca" /></a></td>

<td align="right" id="header_right_cell">
&nbsp;
</td>
</tr>
</table>
<!-- /logo -->


to

<!-- logo -->
<a name="top"></a>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="998">
<tbody>
<tr>
<td align="center"><a href="index.php"><img title="Comunidad ComeBoca" src="images/Header2.jpg" alt="Comunidad ComeBoca" border="0" /></a></td>
</tr>
</tbody>
</table>
<!-- /logo -->

NatalieMarie87
03-15-2009, 03:29 AM
Thanks for the help, but i tried and it didnt work, the image got deleted so I had to revert it

mcrider
03-15-2009, 11:47 AM
Sorry, try again....:o