Jump to content

HTML/CSS Wizards apply within.


Joe Papasnap Maher

Recommended Posts

I need some help regarding an ebay template listing..

I made a template, some geezer on fiver made it into html for me.

Have temporarily uploaded it to my mates site, 

But when i go into ebay and put the html in, and change the links..the pics are showing up much bigger than they are supposed to be. Just wondering if its something that im doing wrong or what?

Feel free to add me on facebook, can chat easier there - https://www.facebook.com/joemaher44

Link to comment
Share on other sites

don't know about ebay templates, but my guess would be that your friend just did not declare image sizes at all and your new image files are bigger than the ones your friend used. easiest fix would be to just make the image files you are using smaller. 

alternatively, you can declare image size in the html file like this:


inline:
<img src="http://....jpg" height="100" width="100" />
<img src="http://....jpg" style="width: 100px; height: 100px; " />
<img src="http://....jpg" style="width: 100px; height: auto " />

if your img-tags have a field called "class" or "id", like this:
<img src="http://....jpg" class="something" />
then the image-size info is stored either in a seperate css-file or within style-tags at the top of your html-file (just find the section with the same name as your class/id)

Edited by jeff costello
Link to comment
Share on other sites

Or if the containers are set up correctly, just add a css style of img {max-width:100%}. This is assuming you've not used in line styles.... 

Edit: ping me a pm if you like, I'm going to be doing some work tonight anyway so can take a look

Edited by Wrayvon
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...