Hi All,

I have been smacking my head on this computer for a few hours now, and very close to cicking the ***king thing out side, would take so much pleasure in in seeing my computer blown into a million bits, or just get a sledge hammer and smash it into the ground....

the problem, I am using this themes thing called Zen, and i copied the Starter kit and I have changed some of the CSS themes, all i am trying to do is have control over the links colour and remove the text-underline, when i search the whole site of Drupal and remove all text-decoration from all CSS then clear cach, low and behold, the f*****g underline of text is still there, where the hell is it, I use firebug to trace it back,

i have added CSS code to that element, and still nothing changes, if i add text-decoration: strike-through, that works fine, however, if i put text-decoration: none; nothing changes, the navigations are still showing up.

I am very fed up, please help... think i might just go type some html on note pad and put tables and screw all CSS and DIVs, i have not had problems this before...

maybe,,, even better, ditch all this computer and internet stuff.... ok, enough, am gona smoke some herbal med, that might chill things bring on a solution.

I do love drupal, but i am lost....

Comments

matt blaine’s picture

I have had similar experiences and took quite a bit to get rid of. !important usually fixes but have had times when that did not.

Do you have a link to the site in question / might help with another set of eyes

abs_uk’s picture

Hay,

thanks for your reply, here is the link

http://beta.threedeepixel.co.uk/

I was close to suicide ;) ,,, driving me mad.... feeling much better now, anyways, back the CSS, i got my STARTER (named 'design01') kit enabled in themes as well as Zen themes.

hope you can help.

cheers

abs_uk’s picture

for any one out there that gets problems with Zen, all i can say is ditch it.... much simpler to go back to basics... got all my problems solved in 1 min, all done after deleting ZEN... thanks all.. by

stensiggaard’s picture

In your theme stylesheet (yourtheme.css) Change to this:
/** navbar **/
#navbar a
{
text-decoration: none;
}

Works like a charm on navigation links

deafstones’s picture

Check html-elements.css inside your theme´s folder. Then go to the 192 line... there you´ll find

a:link
{
color: #000000;
}

You should add text-decoration: none; to it, like this:

a:link
{
color: #000000;
text-decoration: none;
}

Next time try using Firebug to check which class or ID you need to change. Hope it works!