Support » Themes and Templates » CSS & Links

  • I have special CSS specifications for how my links show up, and they work fine except for in the wordpress blog. They show up as the default blue. I’ve tried screwing around with wp-layout and stuff, but nothing seems to work. What do I need to change in order for the css links to register?

Viewing 11 replies - 1 through 11 (of 11 total)
  • Links in the posts or links in the menu or ? Have an url so we can check it out?

    wordpress style sheet must uses XHTML ways of importing Style sheets,( in the default @import XXXX way)
    so you hav to go look at the original template and change it to that, you can’t just simply use <link rel xxxx>

    Thread Starter Anonymous

    I changed it in wp-layout.
    http://litaloo.unlimitedrestriction.com

    Thread Starter Anonymous

    I think I did that. I dont want different colors for different links though. I just want to change the default colors, and I tried doing that but it didnt take. Its not the default wp colors, its the default blue and purple colors.
    Here’s my current code:
    a {
    color:”#FFFFFF”;
    text-decoration:none;
    font-weight:bold;
    filter:none;
    text-transform:none;
    height:0;
    font-family:tahoma, Verdana;
    font-size:10px;
    }
    a img {
    border: none;
    }
    a:visited {
    color:”#FFFFFF”;
    text-decoration:none;
    font-weight:bold;
    filter:none;
    text-transform:none;
    height:0;
    font-family:tahoma, Verdana;
    font-size:10px;
    }
    a:hover {
    color:”#000000″;
    text-decoration:none;
    font-weight:bold;
    text-transform:none;
    height:0;
    filter:DropShadow(Color=”#811328″, OffX=”-1″, OffY=”1″, Positive=”1″);
    cursor:help;
    }

    Take the ” away
    color:”#000000″; should look like color:#000000;

    Thread Starter Anonymous

    Okay, did that. Still makes no difference though. Oh, and is there any possible way that wp-layout can affect another page that it has no association with?

    Thread Starter Anonymous

    Forgive me for knowing absolutely nothing about wordpress.
    Its fixed for the most part, but I take it there isnt a way to get a dropshadow on links.

    There may well be a way, but I’d imagine you are fairly limited by the size of the object you want to cast the shadow, and your text is quite small, so that would make a shadow even smaller, and if it’s done with CSS, ensuring browser compatibility would be damn tricky, if not impossible without a whole bunch of tricks.
    At least the colours are sorted though 🙂

    Thread Starter Anonymous

    Thank you. You’re a guru.

    You are welcome…… and guru ? Me ? Can’t be true … I don’t know PHP 🙂

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘CSS & Links’ is closed to new replies.