Forums

Blog Entries section in lower case only. How fix? (3 posts)

  1. netvicar
    Member
    Posted 5 years ago #

    Right now my blog at http://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.

  2. netvicar
    Member
    Posted 5 years ago #

    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

  3. manstraw
    Member
    Posted 5 years ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic