• I only have a few questions that I’d like you guys to try and clarify for me. You can refer to my blog [https://www.kristiegirl.org] and hopefully see what I mean.

    1.) I don’t understand why my links on the sidebar and within the posts are still blue and underlined, even though I’ve read and re-read my style.css. Am I missing something?

    2.) Why are the permalinks and the comments links in my posts not clickable? Did I accidentally delete something important in index.php? Or anywhere else for that matter?

    3.) This question isn’t as important as the first 2, but how can I get the little circles next to the links in the sidebar to disappear and how can I change the divider between the posts to something else?

    Thanks for taking the time to read this. I hope to be hearing back from you soon. ??

Viewing 1 replies (of 1 total)
  • #1 — Best quick guess is to say have a look at your pages again. Like sidebar.php the About link is told to use li class=”page_item” but I can’t find this class defined in your style sheet.

    Also I could be wrong as I’m still learning my way around css but for the links in the style sheet you have:

    color: #000000;
    text-decoration: bold;

    If you want them bold and with no underline wouldn’t it be more like:

    color: #000000;
    text-decoration: none;
    font-weight: bold;

    #2 — Sorry no idea there

    #3 — In the style sheet change the UL class to use the below:

    list-style: none; instead of “list-style: circle inside;”

    Hope that helps a little. I’m sure someone will be around to help out with the rest..

Viewing 1 replies (of 1 total)
  • The topic ‘Questions regarding CSS, Permalinks, and comments links’ is closed to new replies.