I would like to change the appearance of the font when the words are links.

  • Unknown's avatar

    I’m using Big Brother theme and the font is grey, the links are lighter grey. There is not enough contrast. I think I figured out how to change the color when I hover over the link but I’d like the link to be a different color all the time so that my readers can see where they are supposed to click to access the linked content.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi!

    It looks like you almost have it. You can use either of the following:

    .post a {
    	color: #10962d;
    	text-decoration: none;
    }
    a {
    	color: #10962d;
            text-decoration: none;
    }

    You currently have a / in front of the .post version. If you remove that slash, it should work on all links within a post.

    The latter code will work for all links on your site.

    Can you give either of those a try?

  • Unknown's avatar

    I did it!! I am beyond excited since I have absolutely no idea what the heck I’m doing and I did it!! Thank you so much for your help.

  • Unknown's avatar

    Yay! Glad that worked. Please let me know if you need anything else.

  • Unknown's avatar

    Regarding Muse172.com, I do have another question regarding my site title. Because I have a logo, when I add my site title, I have redundant titles at the top of my page. Can I just change the site title font to white? I tried this but it didn’t seem to work. Maybe because I’m kind of making this up as I go.

    .site-title a {
    color: #191919;
    text-decoration: none;
    }

    Anyway, is there a preferable way to do this?

  • Unknown's avatar

    Hi Liz,

    Jeremey is out for a couple of days so I am responding for him!

    In regards to your double-site title problem, the question really is how you want what is left displaying. Do you want the tagline (“Care for your mind . . .”) to show? If so, do you want an extra line of white space between your graphic and the tagline?

    If you still want it to show, and you want it directly below the graphic, you’d want this:

    .site-title a, .site-title a:visited {
        display: none;
    }

    It just removes the title complete. It prevents it from being loaded.

    This next one loads the title but doesn’t display it, so it results in there being a white space between the graphic and the tagline:

    .site-title a, .site-title a:visited {
        visibility: hidden;
    }

    Finally, this last one removes them both:

    .site-title a, .site-title a:visited, .site-description {
        visibility: hidden;
    }

    (or display: none;)

    I hope this helps!

  • Unknown's avatar

    Worked perfectly! Thank you very much.

    Liz

  • Unknown's avatar

    No problem at all. Have a great week!

  • The topic ‘I would like to change the appearance of the font when the words are links.’ is closed to new replies.