Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to change text color globally?

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #145994
    knowledgenotebook
    Participant

    Hi,

    Sorry to bug you all.

    Here’s our future new design landing page,

    http://66.147.244.77/~knowleo6/dev/

    Text color currently is pretty dim, I’d like them to white like the menu item on the navigation bar. Currently I have 4 css files, where do I go to make the change so that text on every page would be more legible.

    Many thanks.

    #145996
    Paulie_D
    Member

    The ‘global’ text color is in your bootstrap.css file.

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      line-height: 20px;
      color: #656566; <----
      background-color: #262528;
      background: url(../img/bg.jpg) 0 0 repeat;
    }
    

    Be VERY careful about changing this as it’s possibly going to make a lot of changes that you aren’t anticipating.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.