• Resolved iselaespana

    (@iselaespana)


    Hello. I wanted to know how to make the twenty ten footer full width of page without changing anything else and how to change the font color from black to white in only the footer area.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can use the css in the style editor to do this. Look for #footer in the font section of the stylesheet of the sytlesheet.css file and add in color:#fff.

    To get to the editor: 1) login into your wordpress site 2) In the left hand column in the dashboard click “Appearance” 3) In the menu that opens under appearance select “Editor”.

    By default the editor opens up with stylesheet.css selected. Now you just make the changes like I mentioned earlier.

    Thread Starter iselaespana

    (@iselaespana)

    yes I know how to get to the editor. But I don not know what css to add to make the footer full width. I have tried #footer width: 100% and nothing happens. As far as the color I know how to change the color of the footer but I don not know to change the font color of the footer. Any ideas? Thank you for your reply.

    Most CSS-specific questions can be answered by using Firefox Firebug or Chrome Developer Tools to inspect a given element, in order to determine what CSS rules are being applied (and which are being over-ridden).

    You can use absolute positioning, to achieve the 100% width set the left and right values to 0. The property color:#fff; controls font color not background color.

    Thread Starter iselaespana

    (@iselaespana)

    Thank you! That totally worked!!! I was so frustrated!!!!

    This is what worked (twenty ten footer)

    #footer {
    margin-bottom: 0px;
    background-color:#0c0904;
    position: absolute;
    right: 0px;
    left:0px;
    color:#fff;

    #site-info a {
    color: #fff; ——-this is where it changed the font color for footer
    text-decoration: none;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Please help!! day #3 and no help.’ is closed to new replies.