• Where can I edit the color for the links? Ive found the link colors for the content but not for the actual links? I have some banners that I have. a blue border automatically pops up around them and I cant find the file to edit to make border=0?
    Any direction woudl be great.
    Thanks all.
    https://humanveal.com/blog
    <edit>
    template is human condition….

Viewing 5 replies - 1 through 5 (of 5 total)
  • You have chopped out a ton of the css, hence the blueness.
    Put this css in below, and the ‘a’ setting covers colours / behaviours:
    #menu {
    background: #fff;
    border-left: 1px dotted #ccc;
    border-top: solid 3px #e0e6e0;
    padding: 20px 0 10px 30px;
    position: absolute;
    right: 2px;
    top: 0;
    width: 11em;
    }
    #menu form {
    margin: 0 0 0 13px;
    }
    #menu input#s {
    width: 80%;
    background: #eee;
    border: 1px solid #999;
    color: #000;
    }
    #menu ul {
    color: #ccc;
    font-weight: bold;
    list-style-type: none;
    margin: 0;
    padding-left: 3px;
    text-transform: lowercase;
    }
    #menu ul li {
    font: italic normal 110% 'Times New Roman', Times, serif;
    letter-spacing: 0.1em;
    margin-top: 10px;
    padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
    }
    #menu ul ul {
    font-variant: normal;
    font-weight: normal;
    line-height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    }
    #menu ul ul li {
    border: 0;
    font: normal normal 70%/115% 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    letter-spacing: 0;
    margin-top: 0;
    padding: 0;
    padding-left: 12px;
    }
    #menu ul ul li a {
    color: #000;
    text-decoration: none;
    }
    #menu ul ul li a:hover {
    border-bottom: 1px solid #809080;
    }
    #menu ul ul ul.children {
    font-size: 142%;
    padding-left: 4px;
    }

    Thread Starter humanveal

    (@humanveal)

    HOLY COW!
    I dont think Ive deleted that much code? Or any code?
    Does this go in the regular wp-layout.css? And does it matter where it is placed?

    You’d put it in wp-layout.css, and it doesn’t matter where it’s placed.

    Are you talking about blue links and blue images border on the left column. Your CSS is messy, hard to follow so just stick this into the very bottom of your wp-layout.css

    #menu a img {
    border: none; /* gone are the borders*/
    }
    #menu a:link { /* unvisited links are green*/
    color: green;
    }
    #menu a:visited { /* visited links are pink*/
    color: pink;
    }
    #menu a:hover { /* hovered links are yellow*/
    color: yellow;
    }

    Thread Starter humanveal

    (@humanveal)

    Im not sure what happened to my CSS. When I edited one piece of code my .css came up as that format.. NO FORMAT. Its no longer broken up nicely.
    I added those but there was no change. Maybe I need to go back to the drawing board with the wp-layout..
    Thanks all.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Link color?’ is closed to new replies.