Forums

Change Color of Writing (9 posts)

  1. chinamash
    Member
    Posted 3 years ago #

    What would I need to do to change the color of the Copyright bit of writing to black and make it bold? Any tips appreciated! Here's the bit of code in question:

    <!-- begin footer -->
    <div id="footer">

    Using the Flex theme designed by Phu Ly.
    Proudly powered by WordPress.
    </div>
    </div>
    <div>
    Copyright © 2006 chinamash.com - All Rights Reserved
    </div>
    <?php do_action('wp_footer'); ?>
    </body>
    </html>

  2. moshu
    Member
    Posted 3 years ago #

  3. chinamash
    Member
    Posted 3 years ago #

    Thanks Moshu - Not really sure where to go with that though after having read the link. I'm supposed to now figure out the style?

    Here's a bit from the style sheet that I think has to do with the footer:

    #footer{
    border-top:1px solid #111;
    border-bottom:1px solid #111;
    color: #eee;
    background: #555;
    clear:both;
    padding: 5px;
    text-align:center;
    margin-left: auto;
    display:block;
    margin-right: auto;
    font-size: 0.9em;
    font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Helvetica, Arial, sans-serif;
    }
    #footer a{
    color: #fff;
    font-weight:bold;
    }
    a:hover {
    text-decoration:underline;
    }
    .entry{
    padding-bottom: 20px;

  4. moshu
    Member
    Posted 3 years ago #

    color: #eee; <=== this is the line that defines the text colour in footer div
    color: #fff; <== this is the line that defines the links' colour in the footer div.

    YES, after reading that link (and, if necessary ALL the suggested resources) you should be able to find your style.

  5. chinamash
    Member
    Posted 3 years ago #

    Okay - I figured that out and understand that. What I have though is a line of text in the "padding" that I'd like to change the color of. I think an additional bit of code is necessary. Or can I just type 'color:black'?

    I admire your patience! If you could maybe have a look at the very bottom of this site: http://chinamash.com then I think you'll see what I mean about the words being in the padding

  6. moshu
    Member
    Posted 3 years ago #

    Sorry, you have a very non-friendly LONG, LONG main page and I refuse to look at anything that long (even with my "admirable" patience, LOL)

  7. chinamash
    Member
    Posted 3 years ago #

    It takes less than a second to scroll to the bottom and see the copyright bit that I want to be black. But thanks all the same, man, you put in a lot of time around here. Hopefully someone else will pop in and be able to help. I'm sure it's super easy for someone who knows what they're doing

  8. petit
    Member
    Posted 3 years ago #

    Hey moshu!
    Ctrl+End or scroll bar, no? ;)
    Back in a few weeks.

    B good!

  9. samsarin
    Member
    Posted 3 years ago #

    If you're trying to change the text in the footer, this should do:

    #footer p, #footer a
    {
    color: black;
    font-weight: bold;
    }

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.