Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Anna

    (@brasandbodyimage)

    All sorted. Added this to make post titles black, then pink on hover:

    .entry-title, .entry-title a {
    color: black;
    }
    
    .entry-title a:hover, .entry-title a:focus, .entry-title a:active {
    color: #df144d;;

    Thanks for the help.

    Thread Starter Anna

    (@brasandbodyimage)

    Okay, I just tried adding a simple link change thing to the start, with my previous changes below, so I now have this:

    /* Testing link color changes */
    
    a:link { color: #df144d; }
    a:visited { color: #df144d; }
    a:hover { color: #df144d; }
    
    /* Changes navigation bar text/page navigation links grey */
    
    .site-navigation a {
    	color: rgb(110,110,110);
    	color: rgba(110,110,110,1);
    }
    
    /* Changes navigation bar background black */
    
    .main-navigation, .menu-toggle {
    	background-color: rgb(0,0,0);
    	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0)));
    	background-image: -webkit-linear-gradient(rgba(240,240,240,0.8),rgba(210,210,210,0.8));
    	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0));
    }

    This leaves my menu bar the same, and changes I think all of the hyperlinks. However, it does make post titles pink all the time, rather than black usually then pink on hover. It’s closer but still not perfect. Any way to change that one thing? Is what I’ve done so far awful code?

    Thread Starter Anna

    (@brasandbodyimage)

    Nope, the navigation bar was how I wanted it (or close enough, at least). I want the rest of the hyperlinks (which are currently navy blue) to be dark pink, without changing the navigation bar – e.g. the post titles on hover, the hyperlinks in the sidebar, hyperlinks within posts themselves, post dates, tags, categories etc.

    Thread Starter Anna

    (@brasandbodyimage)

    Hi Aaron, I’ve installed the CSS editor and added that code. Unfortunately it doesn’t seem to have worked. The only thing I can see which has changed is the “Home” link in the navigation bar, instead of the rest of the links in the posts/sidebars etc.

    Thread Starter Anna

    (@brasandbodyimage)

    Hi Aaron, I can download the CSS editor, just checking if it’s necessary? I seem to already be able to add stylesheets, which add customisations but are separate from the original code, and take precedence over the theme CSS.

Viewing 5 replies - 1 through 5 (of 5 total)