Lesson Four: Controlling page width
Slip into your CSS file this code:
.pagecontainer
{
width:900px;
margin:10px auto 10px auto;
}
The margin section makes sure the shop is centred.
So, bet you are wondering what the css file looks like now? I didn’t want a coloured background to my store so this is what I have so far:
/* How to style your eBay shop using CSS by http://www.kidsontalks.com. This code is
totally free, why not check out the guide on my blog. Steal away, you can even sell it on
as there are no graphics involved.*/
/* -------- Control Page Width -------- */
.pagecontainer
{
width:900px;
margin:10px auto 10px auto;
}
/* -------- End -------- */
/* -------- Control Border on Gallery List -------- */
td.gallery
{
border:1px #FF00FF solid;
}
/* -------- End -------- */
/* -------- Control Background on Gallery List -------- */
td.gallery table td
{
background:#FFCCFF;
}
/* -------- End -------- */
Now your eBay store is starting to take shape. The next element to look at are controlling the header. Everyone loves a nice header for their eBay shop!
1 response so far ↓
1 Kidson Talks | The E-commerce Chemist // Apr 26, 2008 at 9:28 am
Placing a custom header in your eBay Shop…
Lesson 5: Using a custom shop header.
You need to make sure you on on the ‘custom header only’ theme within eBay.
Go Back to wear you entered your style sheet information and place:
<img src=”http://www.mysite.com/header.jpg” alt=”eB…