HTML Help Needed Wi...
 

Subscribe now and choose from over 30 free gifts worth up to £49 - Plus get £25 to spend in our shop

[Closed] HTML Help Needed With Ebay Template...

3 Posts
3 Users
0 Reactions
89 Views
Posts: 0
Free Member
Topic starter
 

I have been playing with an Ebay template that i got off the web and as I'm a Html novice I'm struggling a bit...
I have added my own made Banner for the top but I'm trying to save a load of work in Photoshop regarding the photos, I think it will be much easier to have a White background on the template that way I can just use the white background that i will use on my photos but I can't for the life of me find where to make the background white in the code, it must be written in a way I don't understand...

Would someone be so kind to take a look if I email you the html in a notepad file...

Thanks a lot
Anthony


 
Posted : 14/04/2012 2:38 pm
Posts: 16363
Free Member
 

I'm far from expert but it might be something like bgcolor="value" somewhere in the body tag. Its all done with CSS these days, though. That said, I think HTML ebay pages look a bit rubbish unless they are very simple, but it's your call 🙂


 
Posted : 14/04/2012 2:51 pm
Posts: 0
Free Member
Topic starter
 

Cheers, I have looked through every line and can't see any colour lines It must be done in CSS, I ain't got a clue about that...

It is just a simple block template, what are the best looking ebay shops/ templates written in?

Thanks


 
Posted : 14/04/2012 3:00 pm
Posts: 0
Free Member
 

either in the body tag put where it says

[code]<body>[/code]

add

[code]bgcolor="#FFFFFF[/code]

i.e.

[code]<body bgcolor="#FFFFFF">[/code]

or in the CSS file where it says:

[code]body {will have some random CSS code in here;}[/code]

add in the following:

[code]background-color:#FFFFFF;[/code]

i.e.

[code]body {will have some random CSS code in here; background-color:#FFFFFF;}[/code]


 
Posted : 14/04/2012 3:13 pm