• Right now my blog at https://www.andrebell.com/blog/ is showing the Blog Entries with all lower case characters ??

    How do I make the Blog Entries area show in correct sentence case, instead of all lower case characters?

    I don’t know php but know how use notepad real well ??

    Thanks for the help.

    Andre’
    PS: Oh, where do I change links to normal blue links, instead of the dashed mouseover effects? Number one complaint I get is most people say they don’t see where to click to read a blog entry.

    They say they didn’t know the titles on the right hand side (Blog Entries) were actual links.

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter netvicar

    (@netvicar)

    I finally found how to remove “lowercase” from the css files (after more than six months of searching using the wrong keywords)…

    I’m still looking for ways to change /a href/ links to look like normal clickable blue links. I want to get rid of the dashed mouseover effects on links.

    If you can help me with that i’d be greatly appreciated.

    Thanks.

    Andre

    about how links should appear with underline. in your css file for your theme, under main links, change

    a, .feedback a, .meta a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px dashed;
    }

    to

    a, .feedback a, .meta a {
    color: #000000;
    text-decoration: underline;
    }

    Then, about the lowercase in your side menu.

    in your css, a little past 3/4’s of the way down, under side menu, you’ll find

    #menu ul li {
    font: 150% Verdana, Arial, Serif;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #000000;
    text-transform: lowercase;
    }

    change it to

    #menu ul li {
    font: 150% Verdana, Arial, Serif;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #000000;
    }

    Basically, remove that last line.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog Entries section in lower case only. How fix?’ is closed to new replies.