Subscribe now and choose from over 30 free gifts worth up to £49 - Plus get £25 to spend in our shop
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
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 🙂
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
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]
