PDA

View Full Version : need help


V3N0M
06-02-2005, 03:23 PM
first i wanted to say that i`m new to this, so plz apologise if my questions may be a little bit old or just stupid.. hmm - i searched this forum but i found nothing related to my questions.. hehe..

so, i downloaded pixelpost, installed it (without any probs), uploaded pics (it works fine!!), tweaked the size and the colours here and there a little bit and i`m really happy with my new blog - EXCEPT with the link colours! :)

i don`t want them to be blue and purple - i want them GREY. how can i change the link-colours? i searched through the whole pixelpost-light.css and the image_template.html but i found nothing.

i also wanted a nice gif instead of the headline - is it possible to insert a gif at that place with an picture tag? (like doffer used it http://www.pixelpost.org/forum/viewtopic.php?t=1217)

thx for your help, V3N0M :D

Joe[y]
06-02-2005, 03:37 PM
there's no such thing as a silly question when learning HTML and CSS - it's the best way to learn.

anyway... what you're asking, i'm happy to say, is VERY easy but none the less I'll talk you through it carefully.

first of all, your link colours :

in pixelpost-light.css you just need to insert the following code:

a {
color:#666;
}

a:hover {
color:#666;
}

i hope that works as the right shade of grey for you. if not then if you want to darken the shades change #666 to #333 and if you want to lighten them change #666 to #999.


to insert a gif image as your header instead of the text is also simple... in all the something_template.html files you need to find <SITE_TITLE> and replace it with the xHTML image tag which works like thus:

<img src="http://pathtoyourimage" alt="Header" />

if you have any more troubles don't be afraid to ask here.


hope that helps! ;)

V3N0M
06-02-2005, 03:53 PM
BIG THX!!! iŽll try that! :D