GetSimple Support Forum

Full Version: Can't see image buttons in IE & Opera
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
It's my first post here. I've made my first template for GS today.
The problem is I can't see my image buttons under IE & Opera

In template.php file I add

<a href = " h t t p ://mysite . com/index . php?id = slug"< img src=" ht tp: // mysite . com/theme/mytheme/images/image.jpg" /></a>

even with <?php get_theme_url(); ?>/images/image.jpg still doesn't work.
These 2 methods perfectly works under FF & Chrome but suck on IE & Opera.

Maybe someone know another solution? Thank's for any help.
...id=slug"<img src=...
should be:
...id=slug"><img src=...

(closing angle bracket for <a ...>, before <img...>)
Carlos Wrote:...id=slug"<img src=...
should be:
...id=slug"><img src=...

(closing angle bracket for <a ...>, before <img...>)

Thanks man! I need to get some sleep before I wrote something here.
Regards