PDA

View Full Version : Static HTML widgets .....


rotor
11-13-2013, 06:01 AM
I added the following code in configure to a "Static HTML" widget

<img src="http://www.xxxxxxx.com/xxxxxx/xxxxxx/CQFlyers.jpg" alt="" />

The box shows empty and I dont know why? The url points directly to the image but it just isnt showing.

Any ideas?

WEBDosser
11-13-2013, 06:34 AM
try it without the / at the end and give some "width="#" height="#"

rotor
11-13-2013, 08:42 AM
Ok fixed - had a url pointing to my other site! Had earlier placed it inside a link and inadvertently left the link site in as the img url when I removed the link! doh!

Thanks for the suggestion though ......

tbworld
11-13-2013, 09:33 AM
I added the following code in configure to a "Static HTML" widget

<img src="http://www.xxxxxxx.com/xxxxxx/xxxxxx/CQFlyers.jpg" alt="" />

The box shows empty and I don't know why? The url points directly to the image but it just isnt showing.

Any ideas?

In modern browsers your HTML syntax is correct. The img tag format depends on the 'Doctype. Vbulletin4 users 'XHTML 1.0 Transitional' therefore use "/>" for termination of the '<img>' tag singleton.


<img src="http://www.xxxxxxx.com/Flyers.jpg" alt="Flyers" />I was going to say that most likely it just cannot find the image and check your browser for errors, but you a already made that determination.