Home
Buy on eBid
Sell on eBid
eBid Stores
My eBid
Upgrade to Seller+ Lifetime
eBid Help
Close
Login to Your Account
eBid Community Forums - Chat & find help from others in the eBid Community
Page 3 of 13 FirstFirst 123456789101112 ... LastLast
Results 21 to 30 of 127

Thread: Re changes to auction description width

  1. #21
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by johnwash1 View Post
    I'm very interested in your comments about CSS. I was under the impression that it's not possible to use CSS on auction sites, because your listing is only a small part of the whole page. Are you actually doing this? More detail please?
    Sure, you just use CSS in the normal way, like:

    <link rel="stylesheet" href="http://www.3drom.com/auction/auctions.css" type="text/css" media="all, screen">

    and it works. I use it on Ebay too, but unfortunately Ebay's site displays parts of my auctions incorrectly in Internet Explorer, and as you would expect, when I try to contact support, they ignore what I write and just send me a stock answer that doesn't help at all...

    When I've uploaded my auctions you can see how it all works, that should be this weekend hopefully.

  2. #22
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by hypn0t0ad View Post
    I'm not opposed to the auction description width changes per se but I do think giving two hours notice of such a change in the "general chat" boards is laughable. Really, what is the point of that? It doesn't exactly give much time for anyone to raise any valid questions/objections does it?

    I have very limited knowledge of HTML/templates and I have no desire to improve on that knowledge. What I do know is that Gothicina sent me a customised eBid auction template that ticked all the boxes for my requirements as a seller in a simple, stylish and elegant way (and no I'm not on commission ).

    As it happens I've got a load of old listings I want to update/change photos/add videos to anyway so it's not THAT much of a big deal for me but I wonder how many 'middle of the road' sellers this might effect? I'll have to close about 700-800 listings on here in the short-term.
    To fix your auctions, you'll need to change this piece of code at the start:

    <table border="0" cellspacing="15" cellpadding="15" width="80%" align="center" style="border: 0px none ; border-collapse: collapse">

    Change the width to 99%, and you'll need a larger background image.

    If you create your auctions using CSS, then these changes are easy to apply - you only need to edit your CSS file, once, and that's it, you don't need to manually edit any of the auction HTML files, nor re-upload them.

    Ebid promised to fix this problem months ago, so it's not as if it's suddenly been sprung on us.

    Gothinica's template uses inline styles which means it's a nightmare to change anything - you have to manually change every single auction by hand, rather than just change one CSS file which applies to all the auctions.

  3. #23
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by kedo View Post
    I don't have any templates to change.

    My problem is that I had stuff on my pages that worked. It's no accident that I'm near the top of the buddy points table every month for instance.

    Gothicina, if you're around, have you got any ideas? You can obviously see the problem. How can I push everything back towards the centre without changing each individual auction.
    Can you show me any of your auctions which aren't in the centre and I'll try to show you how to fix them? The ones I looked at looked fine, but I must have picked the wrong ones!

  4. #24
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by Gothicina View Post
    To do changes using one of the programs mentioned you need an identifiable string of HTML at the beginning of each auction,(it cannot repeated anywhere else in the listing) you'd also need another identifiable string, at the end of every auction, (again not repeated anywhere else)

    You could then add to those strings to enclose your listings, but that would involve saving them to a spreadsheet, making the changes, & using the spreadsheet to bulk upload them again.

    Although the layouts look the same searching through the HTML on a number of your items it does vary slightly, so I don't think that would work.

    Support SHOULD be able to do it for you because they can ignore your code & use their own which will be identical for everyone.

    IE
    HTML Code:
    <div class="f_description2">
    at the start

    HTML Code:
    </div><br>
    </td>
    <td class="f_white" width="10">
    at the end

    You would have to let them know how wide you wanted it, either as a fixed width or a % of the available description space.
    This is incorrect use of CSS - you wouldn't use a class ("f_white") AND a width attribute, you'd put the width value into the CSS style "f_white", and then you only need to edit the CSS to change all 3,600 auctions at once.

    So if you had:

    .f_white {
    color: #ffffff;
    width: 99%;
    }

    that would make the width of that table cell 99%. Also, you should never use colours, etc. in the name of your selectors. If you want to change the "f_white" style to red, or blue, it will be very confusing when it's still called "f_white".

    Here's the HTML for one of my standard auctions on Ebay, so you can see how simple it is:

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">

    <html>

    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>3DROM</title>


    <link rel="stylesheet" href="http://www.3drom.com/auction/auctions.css" type="text/css" media="all, screen">


    </head>


    <body>
    <a name="top"></a>

    <div id="wrapper">



    <div class="column1">

    <div class="nav">
    <a href="#productimages">Product Images</a>
    <a href="#contactus">Contact Us</a>
    <a href="#delivery">Delivery & P&P</a>
    <a href="#paymentdetails">Payment Details</a>
    <a href="#returnspolicy">Returns Policy</a>
    </div>

    <div class="logocontact">
    <img class="Logo" src="http://www.3drom.com/auction/Logo.png">

    <div class="livesupport">
    <!-- BEGIN ProvideSupport.com No-Script Code -->
    <a href="http://messenger.providesupport.com/messenger/3drom.html" target="_blank">Contact Us</a>
    <!-- END ProvideSupport.com No-Script Code -->
    </div>

    </div> <!--- END OF LOGOCONTACT -->

    </div>

    <div class="column2">
    <h2>Why buy from 3DROM?</h2>
    <ul>
    <li>We are based in Aztec West, Bristol, U.K., <em>not</em> in China!</li>
    <li>We deliver <em>FAST,</em> within two days. See our delivery times below.</li>
    <li>We are VAT registered - you will receive a full VAT invoice.</li>
    <li>We have been selling for over two years.</li>
    <li>We have excellent feedback.</li>
    <li>We always reply quickly to e-mails (within 24 hours max.)</li>
    <li>All our products come with a 30 day money back guarantee!</li>
    </ul>
    </div>



    <DIV class="Heading">
    <H1>Profigold PGV513 Phono to SCART Extension Cable 3m - SKU2835</H1></DIV>


    <div class="column3">


    <IMG class=ImageSmall src="https://www.3drom.com/store/images/P/Profigold%20PGV513%20Phono%20to%20SCART%20Extensio n%20Cable%203m%20x200.jpg">
    </div>

    <DIV class="column4">

    <UL>
    <LI>Very high quality cable with 24k gold plated connectors
    <LI>Diecast connector bodies.
    <LI>24k Gold Plated contacts ensures optimum signal transfer.
    <LI>99.96% OFC conductor for high resolution picture quality.
    <LI>Cellular PE insulation ensures a clean natural sound.
    <LI>IAT interference absorbers for unmatched picture performance.
    <LI>Lifetime limited warranty against defects or workmanship.
    <LI>RCA to SCART connectors
    <LI>3m in length
    <LI>Please note: the packaging on this product may have very slight damage. </LI></UL></DIV>
    <DIV class=Heading style="clear: both">

    <a name="productimages"></a>
    <H1>Product Images</H1></DIV>
    <IMG class=images src="https://www.3drom.com/store/images/D/Profigold%20PGV513%20Phono%20to%20SCART%20Extensio n%20Cable%203m%20det1.jpg"><BR>
    <IMG class=images src="https://www.3drom.com/store/images/D/Profigold%20PGV513%20Phono%20to%20SCART%20Extensio n%20Cable%203m%20det2.jpg">

    <div class="backtotop">
    <a href="#top">Back to top</a>
    </div>



    <a name="contactus"></a>
    <div class="Heading"><h1>Contact Us</h1></div>
    <p>
    Please use the 'Contact Us' button below, or the "Ask seller a question" box near the bottom of this page, if you have any queries about this item. We always reply within 24 hours.
    </p>

    <div class="livesupport">
    <!-- BEGIN ProvideSupport.com No-Script Code -->
    <a href="http://messenger.providesupport.com/messenger/3drom.html" target="_blank">Contact Us</a>
    <!-- END ProvideSupport.com No-Script Code -->
    </div>

    <div class="backtotop">
    <a href="#top">Back to top</a>
    </div>

    <a name="delivery"></a>
    <div class="Heading"><h1>Delivery & P&P</h1></div>
    <p>
    Next day delivery by Royal Mail 1st Class Recorded Delivery: <strong>£5.00</strong>
    <br />
    We combine postage. Buy more than one item and we will reduce the postage on subsequent items - contact us if you would like a quote for several items' postage costs.
    </p>

    <div class="DeliveryTimes">
    <div class="DialogDelivery"><h1>Delivery Times</h1></div>
    <p>
    (Maximum weight per order is 20kg.)
    </p>



    <div class="DialogDelivery"><h1>Royal Mail Recorded or Special Delivery</h1></div>
    <img src="http://www.3drom.com/store/skin1/images/custom/royalmail.gif" alt="Royal Mail Logo">
    <p>
    Buy <strong>Monday</strong> before midnight - Delivery will be sent Tuesday to reach you <strong>Wednesday</strong>
    <br />
    Buy <strong>Tuesday</strong> before midnight - Delivery will be sent Wednesday to reach you <strong>Thursday</strong>
    <br />
    Buy <strong>Wednesday</strong> before midnight - Delivery will be sent Thursday to reach you <strong>Friday</strong>
    <br />
    Buy <strong>Thursday</strong> before midnight - Delivery will be sent Friday to reach you <strong>Saturday</strong>
    <br />
    Buy <strong>Friday</strong> before midnight - Delivery will be sent Saturday to reach you <strong>Monday</strong>
    <br />
    Buy <strong>Saturday</strong> (any time) or <strong>Sunday</strong> before midnight - Delivery will be sent Monday to reach you <strong>Tuesday</strong>
    </p>






    <div class="DialogDelivery"><h1>ParcelForce 3 to 5 days</h1></div>
    <img src="http://www.3drom.com/store/skin1/images/custom/royalmail.gif" alt="Royal Mail Logo">
    <p>
    Buy <strong>Monday</strong> before midnight - Delivery will be sent Tuesday to reach you <strong>by Saturday</strong>
    <br />
    Buy <strong>Tuesday</strong> before midnight - Delivery will be sent Wednesday to reach you <strong>by Monday</strong>
    <br />
    Buy <strong>Wednesday</strong> before midnight - Delivery will be sent Thursday to reach you <strong>by Tuesday</strong>
    <br />
    Buy <strong>Thursday</strong> before midnight - Delivery will be sent Friday to reach you <strong>by Wednesday</strong>
    <br />
    Buy <strong>Friday</strong> before midnight - Delivery will be sent Saturday to reach you <strong>by Thursday</strong>
    <br />
    Buy <strong>Saturday</strong> (any time) or <strong>Sunday</strong> before midnight - Delivery will be sent Monday to reach you <strong>by Friday</strong>
    </p>




    <div class="DialogDelivery"><h1>Want to specify a later delivery day?</h1></div>

    <p>
    To arrange for your order to be delivered on a later day than the standard days listed above, just leave a note when you make your PayPal payment. We will then delay despatch so your item is delivered on the day you choose.<br>
    (Please note: we cannot guarantee delivery will occur on a specific day if ParcelForce delivery is chosen, as this can vary between 3 and 5 days).
    </p>

    </div>

    <div class="backtotop">
    <a href="#top">Back to top</a>
    </div>

    <a name="paymentdetails"></a>
    <div class="Heading"><h1>Payment Details</h1></div>

    <h2>
    Payment methods accepted:
    </h2>
    <ul>
    <li>Paypal
    <li>PPPay.com
    <li>PPPay.com Escrow
    <li>Cheque
    <li>Postal order
    <li>Bank transfer
    </ul>



    <p>
    All payments must be received within 7 days of the end of this auction.
    <br>
    Please do not bid if you do not intend to pay, nor if you cannot pay within 7 days of the end of the auction.
    </p>

    <div class="HiBig">
    Non-paying bidders will receive negative feedback.
    </div>

    <div class="backtotop">
    <a href="#top">Back to top</a>
    </div>


    <a name="returnspolicy"></a>
    <div class="Heading"><h1>Returns Policy - 30 day 'no quibble' money back guarantee</h1></div>
    <p>
    All our products come with a 30 day 'no quibble' money back guarantee.
    <br />
    If you're not satisfied with your purchase for any reason, simply contact us within 30 days of purchase, and we will allocate you an RMS number to return the item for a full refund. (We regret that we cannot refund postage costs, unless the item is faulty.)
    <br />
    All our products are new (unless otherwise stated) and come with a full one year guarantee.
    </p>



    <div class="copyright">
    >>> Please note: this auction and its design are copyright of 3DROM <<<
    </div>

    <div class="backtotop">
    <a href="#top">Back to top</a>
    </div>


    </div>

    </body>
    </html>
    Last edited by 3drom; 30th April 2008 at 11:43 AM.

  5. #25

    Default

    Quote Originally Posted by 3drom View Post
    To fix your auctions, you'll need to change this piece of code at the start:

    <table border="0" cellspacing="15" cellpadding="15" width="80%" align="center" style="border: 0px none ; border-collapse: collapse">

    Change the width to 99%, and you'll need a larger background image.

    If you create your auctions using CSS, then these changes are easy to apply - you only need to edit your CSS file, once, and that's it, you don't need to manually edit any of the auction HTML files, nor re-upload them.

    Ebid promised to fix this problem months ago, so it's not as if it's suddenly been sprung on us.

    Gothinica's template uses inline styles which means it's a nightmare to change anything - you have to manually change every single auction by hand, rather than just change one CSS file which applies to all the auctions.

    Thanks, but to be honest I'm not bothered if Gothicina's templates are created using a washing up bottle and sticky back plastic. The fact is I bought a customised eBid template from her that I was very happy with and that worked for me. I'm not at all interested in CSS/HTML or whatever - I just want to be able to list using a simple and effective template that I have been using for months. No doubt there will be many other sellers in my position too.

    The fact eBid promised to change the auction description size at some point is irrelevant. Giving two hours notice prior to making the change is the problem and the reason why I have closed my listings en masse. Gothicina has promised to alter the template I have been using but is unavailable for a few days. This situation could have been avoided if a reasonable amount of time was given between making the announcement of the intention to change and making the change itself - I would consider 2 weeks to be reasonable, I consider 2 hours to be laughable as stated earlier.


    Rock, Pop, Indie, Dance and more CDs




















  6. #26
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by hypn0t0ad View Post
    I just want to be able to list using a simple and effective template that I have been using for months.
    If your auctions had been designed using CSS correctly in the first place, then you would have been able to accommodate the new width with no problems, just by changing the CSS. As it is, you now have to manually change every single one of your auctions. That's why I keep harping on about the importance of using CSS.

    In other words, whether you had been given two hours' or two years' notice, you would still need to manually edit every single auction, rather than just the one CSS file, due to the way your auctions were written.

  7. #27

    Default

    Quote Originally Posted by 3drom View Post
    If your auctions had been designed using CSS correctly in the first place, then you would have been able to accommodate the new width with no problems, just by changing the CSS. As it is, you now have to manually change every single one of your auctions. That's why I keep harping on about the importance of using CSS.
    Me = Tarzan so I'll have to take your word for that

    Quote Originally Posted by 3drom View Post
    In other words, whether you had been given two hours' or two years' notice, you would still need to manually edit every single auction, rather than just the one CSS file, due to the way your auctions were written.
    The difference being with 2 weeks/months/years notice I can better prepare for the changes in advance.

    2 hours notice means I close all my listings while I adapt to the changes in the background.


    Rock, Pop, Indie, Dance and more CDs




















  8. #28
    Forum Lurker 3drom's Avatar
    Join Date
    Feb 2006
    Location
    Bristol, Bristol, United Kingdom
    View 3drom's Feedback (+57)
    All-About 3drom
    View 3drom's Listings
    Forum Posts
    142

    Default

    Quote Originally Posted by hypn0t0ad View Post
    Me = Tarzan so I'll have to take your word for that



    The difference being with 2 weeks/months/years notice I can better prepare for the changes in advance.

    2 hours notice means I close all my listings while I adapt to the changes in the background.
    But I can't see what's wrong with your listings at the moment - what problems did the larger width cause? I only ask because I presume that going from a small width to a large width would only mean that you had more space on each side of your original auctions, which shouldn't be a problem. What specifically is wrong with the look now? I'll try to help, I'm sure it can be easily fixed.

  9. #29
    Forum Saint merlin's Avatar
    Join Date
    Jun 2003
    Location
    West Bromwich, West Midlands, United Kingdom
    View merlin's Feedback (+3081)
    All-About merlin
    View merlin's Listings
    Forum Posts
    6,598

    Default

    this stupidity has made this site look a joke there are auctions all over the place that look a mess IT WAS ALL DONE TO PLEASE A FEW WHINGERS WHO WOULD NOT JOIN BECAUSE THEY WOULD NOT PAY THE 3P TO ADD EXTRA IMAGES , IN OTHER WORDS EBID HAS LET DOWN IT`S LONG STANDING MEMBERS WHO HAVE HELPED BUILD THIS SITE ,

  10. #30
    Forum Diehard nysablaze's Avatar
    Join Date
    Jun 2006
    Location
    Cumbernauld, North Lanarkshire, United Kingdom
    View nysablaze's Feedback (+48)
    All-About nysablaze
    View nysablaze's Listings
    Forum Posts
    456

    Default

    #1 son has a suggestion.
    Why not set up so that there is a choice of using either the traditional (narrow) eBid template or the new wider version?
    Even if just as a stopgap for those who have items listed with templates set at the old width, giving time for them to get sorted or use to the new layout.
    Check out my auctions at:

    for excellent gifts,
    and
    Nysa's Notions Jewellery
    for gemstone, sterling silver, pewter and glass jewellery

    or my alter ego, phoenysa,
    Phoenysa's Stitchy Bits - for cross stitch magazines, kits and bits
    Phoenysa's Books & Bits - for pre-owned books for adults and children

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Follow Us
New To eBid?
Register for Free