• Resolved moussempes

    (@moussempes)


    I’m using a modified version of the twentyten wordpress theme and I’m looking to make a couple of adjustments:

    1. How do I change the on rollover color of the date stamp underneath the post title?
    2. For some reason when I click on my buttons on top “Real Weddings” for example, the page that loads up is missing that button (or maybe the words are in white). How do I change that so it loads up looking black?
    3. How do I remove the black bar on the bottom of the page?

    Thanks so much in advance!

    http://www.atelierisabey.com/1sandboxblog/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Anjara

    (@hiteshanjara)

    Hello,

    1. To change the date stamp color, you need to add following css in your style.css file:
    .entry-date { color:red; }

    2. This occurs because, white color is set for current/select menu. You can change that color from http://www.atelierisabey.com/1sandboxblog/wp-content/themes/twentyten/style.css – line no. 442 and that css will display like this:

    #access ul li.current_page_item > a,
    #access ul li.current-menu-ancestor > a,
    #access ul li.current-menu-item > a,
    #access ul li.current-menu-parent > a {
    	color: #fff;
    }

    and you need to change it like this:

    #access ul li.current_page_item > a,
    #access ul li.current-menu-ancestor > a,
    #access ul li.current-menu-item > a,
    #access ul li.current-menu-parent > a {
    	color: #000;
    }

    3. To remove black bar:

    You can put css code to hide footer in style.css file:
    #footer { display:none; }

    OR

    You can remove/change that HTML from footer.php file. (http://www.atelierisabey.com/1sandboxblog/wp-content/themes/twentyten/footer.php)

    Enjoy!! 😉

    First, you seem to have lines of dashes in your CSS that interfere with some rules. Take out all the lines of dashes.

    Then, try adding this to the end of style.css:

    .entry-meta a:hover,
    .entry-utility a:hover {
       color: #0000FF;
    }
    #access ul li.current_page_item > a,
    #access ul li.current-menu-ancestor > a,
    #access ul li.current-menu-item > a,
    #access ul li.current-menu-parent > a {
        color: #0000FF;
    }
    Thread Starter moussempes

    (@moussempes)

    This is perfect! Thank you so very much for your help and expertise! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Modifications to TwentyTen Theme’ is closed to new replies.