Well bust mah britches and call me cheeky, on Tue, 24 Jul 2007 06:57:43 GMT
scribed:
> i am trying to add some inline elements;
> basically its a link with icon and text.
>
> so this is the code i am using:
>
>
HTML Code:
> <a href="#" class="btn toolbar"><img class="icon" src="./images/icons/
> neueObjekte.png" /> Neue Objekte</a>
> <a href="#" class="btn toolbar"><img class="icon" src="./images/icons/
> AbfrageUndAuswertung.png" /> Abfrage und Auswertung</a>
>
> i already tried to insert nowrap to the _and/or_
tag
> (although it makes only sense in the tag)
> careless if i enter it it still wraps.
You have to remove the carriage returns (LF/CR) between the links.
src="./images/icons/neueObjekte.png" /> Neue Objekte
class="btn toolbar">

Abfrage und Auswertung
or
src="./images/icons/neueObjekte.png" /> Neue Objekte<
a href="#" class="btn toolbar">

Abfrage und Auswertung
--
Neredbojias
Half lies are worth twice as much as whole lies.