Dan
Premium Member
Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
|
Afternoon,
Im trying to build my own ebay template for my acutions.
I have used dreamweaver/photoshop to create images, and a html code to show the pictures.
Its great and looks how i want it to, but i need to make it so that the text within the description field is text, and not an image.
How do i go about this? I want to use the font calibri.
My code is as follows:
quote:
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (listing template.psd) -->
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_02.jpg" width="750" height="54" alt="">
<table id="Table_01" width="750" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_01.jpg" width="750" height="134" alt=""></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td>
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_03.jpg" width="580" height="251" alt=""></td>
<td>
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_04.jpg" alt="" width="170" height="251" border="0" usemap="#also"></td>
</tr>
<tr>
<td colspan="2">
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_05.jpg" width="750" height="44" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="http://www.protectyourpiece.co.uk/ebay/listings/descriptions/Natural_Skins.jpg" width="750" height="391" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_07.jpg" width="750" height="194" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="http://www.protectyourpiece.co.uk/ebay/listings/mainimages/listing-template_08.jpg" width="750" height="280" alt=""></td>
</tr>
</table>
<!-- End Save for Web Slices -->
<map name="also">
<area shape="rect" coords="4,4,165,229" href="http://stores.ebay.co.uk/ProtectYourPiece" target="http://stores.ebay.co.uk/ProtectYourPiece" alt="We also stock..." usemap="#stock" border="0">
</map>
</body>
Adult GiftsClick here to vist us
|
Chris F
Show Staff Organiser: East Anglia Premium Member
Registered: 26th Dec 05
Location: Newmarket Drives: Escort Van 1.8
User status: Offline
|
Looks good to me tho buddy!
|
AndyKent
Member
Registered: 3rd Sep 05
User status: Offline
|
I assume the descriptions box is the one currently with 'natural skins' image in it?
If so, just replace:
<img src="http://www.protectyourpiece.co.uk/ebay/listings/descriptions/Natural_Skins.jpg" width="750" height="391" alt=""></td>
with:
<p>My description</p>
|
Dan
Premium Member
Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
|
Yea andy, i kinda managed to figure that bit out, but how do i go about making the font calibri :/
Is it just as simple a <p > </p >
Other sellers seem to be usling <li > ??
Adult GiftsClick here to vist us
|
AndyKent
Member
Registered: 3rd Sep 05
User status: Offline
|
This should work:
<p style="font-family:calibri"></p>
Unless li elements are already styled to come out as calibri? If so try <li>
I'm not that familiar with how listings are sorted on ebay tbh. If it was a regular webpage I would just do the above.
|
Dan
Premium Member
Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
|
Whats the way to add a seperate line?
At the min, my code is looking like this...
<p class="Description" style="font-family:calibri">Skins condoms are CE marked. </p>
<p class="Description" style="font-family:calibri">Supplied loose, in a resealable packet. </p>
<p class="Description" style="font-family:calibri">Best before date at least 2 years from now.</p>
<p class="Description" style="font-family:calibri"> Available in our eBay store in packs of 10, 25, 50 and 100. Also available in Ultra Thin, Dots n Ribs, Extra Large and Black Chocolate</p>
Adult GiftsClick here to vist us
|
Dan
Premium Member
Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
|
I could do with loosing the seperate css.
Thats just a center and a size 18px
Adult GiftsClick here to vist us
|
Sam
Moderator Premium Member
Registered: 24th Dec 99
Location: West Midlands
User status: Offline
|
I wouldn't go with just Calibri, as only people with Office 2007/2010 will be able to see that font.
I would suggest something like this:
<p class="Description" style="font-family:Calibri, Arial, sans-serif;">Skins condoms are CE marked. </p>
And please ensure your CSS syntax is valid, or your adverts will look shit on some browsers:
http://www.w3schools.com/css/css_syntax.asp
|