Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Sidebars & Widgets (http://forum.bytesforall.com/forumdisplay.php?f=14)
-   -   [SOLVED] color links and widget (http://forum.bytesforall.com/showthread.php?t=8051)

lambdaka Jul 10, 2010 05:49 AM

[SOLVED] color links and widget
 
Hi there. !
Working on
- Atahualpa 3.5.1
- Wordpress 3.0
here is the site : http://tiny.cc/9hovp

Tryin to change the links color in the sidebars, I manage to change them in the right sidebar with the code following but it has no effect on the left sidebar, plus if you do ctrl-a or command-a, you can see that there is still two links in the right sidebars with black color..
Code:

div.widget ul {
list-style-type: none !important;
}
div.widget ul li a:link,div.widget ul li a:visited, div.widget ul li a:active {
border-left: 0 !important;
padding-left: 0 !important;
color: #ffffff !important;
text-decoration:underline;
}
div.widget ul {
list-style-type: none !important;
}
div.widget ul li a:hover {
color: #F9BED8 !important;
}

Someone !! please, I m turning crazy one more time ! !:p:p:confused:

juggledad Jul 10, 2010 06:25 AM

1) get rid if the <body...> you have in the widget - only one <body> per page
2) the links on that side are in a table, not a UL so you have to code some additional CSS Selectors or make your current ones more global like this
HTML Code:

div.widget ul {
list-style-type: none !important;
}
div.widget  a:link,
div.widget  a:visited,
div.widget  a:active {
border-left: 0 !important;
padding-left: 0 !important;
color: #ffffff !important;
text-decoration:underline;
}
div.widget ul {
list-style-type: none !important;
}
div.widget a:hover {
color: #F9BED8 !important;
}


lambdaka Jul 10, 2010 06:31 AM

Hi, Yes I just noticed that all the black links were "a href"..
I guess I have no <body> cause everything is ok with your code ! !
thanks a lot one more time..
:):):)

A little question more...
You can see in the menu bar "projects" button.
on the rollover there is some white behind the black...do you have a clue about to remove them.
(but maybe I need to post on the header section)

lambdaka Jul 10, 2010 06:33 AM

the underline decoration seems to not working n the links...???
do you know why..?

juggledad Jul 10, 2010 06:45 AM

I see them all underlined - in both safari on a mac and IE on a pc
--
oh, in the right widget. Try adding the !important to that

lambdaka Jul 10, 2010 06:55 AM

talkin about the links in archive for exemple and on the links in the twitter widget...
on mac safari.

lambdaka Jul 10, 2010 07:06 AM

didn't see the end of your answer...will try...
thanks again ! !

lambdaka Jul 10, 2010 07:09 AM

perfect ! !
:);):)


All times are GMT -6. The time now is 07:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.