How do i add icons next to the text in headlines.
Ive made a quick youtube video to show what i mean .
How do i add icons next to the text in headlines.
Ive made a quick youtube video to show what i mean .
Load your icons to your images map on server.
Position them within your CSS Stylesheet
Thank you .
So i should just put in the link in the CSS stylesheet?
Something like this:
In your HTML
<div id="picture1">
<img src="pic.jpg" alt="text here">
</div>
And your CSS:
#picture1 {
float:left;
width: xxx px;
}
And perhaps some more positionering.
padding and so on
The next picture cud be "picture2 and so on
Sorry for my bad English ;-)
You can just write in danish - my friend translates everything for me :)
But i dont understand where to input the thing you wrote in the CSS style sheet?
Det ville være nemmere hvis man fik et link til din side, samt en beskrivelse af hvor på siden du vil have dine icons.
Du kunne evt downloade et tema med icons og så kig i både html og css og så få en ide til hvordan det kan gøres. Til det kan du evt bruge Notepad
My site is: http://www.jaskobesic.dk
The icons should go right next to the 3 colums under the slider.
I have downloaded a icon set - but when i look at the css sheet on wordpress under "appereance -> editor" i cant really determinate where to put the link you made.
Tror du skal finde denne og smid dit billede i her eller før denne linie.
<h2 class="title">Om JaskoBesic</h2>
Svært når man ikke sidder med temaet selv ;-)
Ellers smid dine ? op på elegantthemes forum de kan sikkert guide dig på Anglais
Jeg ville gøre sådan her:
<h2>
<img src="icon01.gif" alt="Om JaskoBesic" style="border:0; padding-right:24px;" />
Om JaskoBesic
</h2>
Padding'en skal justeres alt efter hvor store/små ikonerne er... Ved at lægge stylen inde i html-tagget, slipper du for at skulle slås med CSS'en - omvendt tvinger det dig til at justere samtlige steder.
Hvis du heller vil have det i CSS, så erstat
style="border:0; padding-right:24px;"
i ovenstående html, med følgende;
class="small-icons"
I CSS'en smækker du så blot
# small-icons{
border:0;
padding-right:24px;
}
- ind i bunden.
Du skal være logget ind for at skrive.