• i want to change the link colors on the main page. i have the entry ones

    also, i have a really nice site going this time, nice keywords and a lot of content on each page, not posted yet. i have the theme now, someone gave me his key for it. is there any way to better anything with the theme for SEO, anything i can do that google would like more and possibly rank my pages higher

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Which link on the home page?

    To change link colours add these two to your custom CSS in the theme customizer and change the hex colour code (the numbers after the hash tag) to whatever colour you want.

    
    a, a:visited {
        color: #d91f1f;
    }
    
    .entry-content a {
        color: #00138E;
    }
    
    Thread Starter tunesrcool

    (@tunesrcool)

    a, a:visited {
        color: #00138E;
        font-weight: bold;
        font-style: italic;
        text-decoration: none;
    }
    
    a, a:hover {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: underline;
    }

    i just want the hover underline
    [link removed]

    Thread Starter tunesrcool

    (@tunesrcool)

    and that changes the wordpress menu on top

    Thread Starter tunesrcool

    (@tunesrcool)

    i got it thanks

    .home-posts-title {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: none;
    }
    
    .home-posts-title:hover {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: underline;
    }
    
    .entry-content a {
        color: #00138E;
        font-weight: bold;
        font-style: italic;
        text-decoration: none;
    }
    
    .entry-content a:hover {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: underline;
    }
    
    .sidebar a {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: none;
    }
    
    .sidebar a:hover {
        color: #00138E !important;
        font-weight: bold;
        font-style: italic;
        text-decoration: underline;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Link CSS’ is closed to new replies.