Page 1 of 1

Very very minor bug with linkslist

Posted: Wed Jun 21, 2006 8:52 am
by Sim
This is a very minor bug with linkslist. When using the mt-trendy style, the hover color for the links is the same as the background. It's a simple fix and I figured that it'd be nice if I posted it.

1) Browse to /plugins/serendipity_event_linklist/ on your server
2) Open serendipity_event_linklist.css in something such as Wordpad (not notepad!) or Frontpage or whatever.
3) Change the following:
div.linklist a:hover {
color: #333;
}

To

div.linklist a:hover {
color: #ffff99;
}

And you're set. That makes the hover color the same color as the rest of the sidebar items, such as your archives.

Re: Very very minor bug with linkslist

Posted: Wed Jun 21, 2006 11:25 am
by garvinhicking
Hi!

Thanks for sharing your fix! :)

Best regards,
Garvin

Posted: Wed Jun 21, 2006 4:51 pm
by mgroeninger
A help hint:

Linklist will check to see if the current theme has a "serendipity_event_linklist.css" css file when it generates its css. So you could copy your modified serendipity_event_linklist.css file into the theme folder, so it won't be overwritten by the next plugin update.

I think I am going to remove the a.hover entry from the default css file (since that really should be set by the theme). Thanks for pointing it out to me!