Highlighted Menu Options

Discussion in 'Squirrel WordPress Theme' started by flip123, Apr 1, 2013.

  1. flip123

    flip123 New Member

    Joined:
    Dec 13, 2012
    Messages:
    7
    Likes Received:
    0
    Hell,

    I can't figure out why some of my menu options are highlighted in white while other are not. I would prefer none to be. www.findlayillinois.net

    Also, I accidentally deleted the social media codes for the footer. Where can I copy them from to put them back in?

    Thanks!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a {
    background: none;
    }
    2.For your second issue

    Go to footer.php present in your theme directory and replace it with the code given below

    Code:
    <div class="clear"></div>
    <!--End Index-->
    <!--Start Footer-->
    <div class="footer">
        <?php
        /* A sidebar in the footer? Yep. You can can customize
        * your footer with four columns of widgets.
        */
        get_sidebar('footer');
        ?>
    </div>
    <div class="footer-strip"></div>
    <!--Start footer bottom inner-->
    <div class="bottom-footer">
        <div class="grid_12 alpha">
            <div class="footer_bottom_inner">
                <?php if (inkthemes_get_option('inkthemes_footertext') != '') { ?>
                    <span class="copyright"><?php echo stripslashes(inkthemes_get_option('inkthemes_footertext')); ?></span>
                <?php } else { ?>
                    <span class="copyright">2011 &COPY; <a href="http://www.inkthemes.com">InkThemes.</a> All rights reserved</span>
                <?php } ?>
            </div>
        </div>
        <div class="grid_12 omega">
            <ul class="social_logos">
                <?php if (inkthemes_get_option('inkthemes_google') != '') { ?>
                    <li class="sl-1"><a href="<?php echo inkthemes_get_option('inkthemes_google'); ?>"><span></span></a></li>
                <?php } ?>           
                <?php if (inkthemes_get_option('inkthemes_rss') != '') { ?>
                    <li class="sl-2"><a href="<?php echo inkthemes_get_option('inkthemes_rss'); ?>"><span></span></a></li>
                <?php } ?>           
                <?php if (inkthemes_get_option('inkthemes_facebook') != '') { ?>
                    <li class="sl-3"><a href="<?php echo inkthemes_get_option('inkthemes_facebook'); ?>"><span></span></a></li>
                <?php } ?>           
                <?php if (inkthemes_get_option('inkthemes_linkedin') != '') { ?>
                    <li class="sl-4"><a href="<?php echo inkthemes_get_option('inkthemes_linkedin'); ?>"><span></span></a></li>
                <?php } ?>           
                <?php if (inkthemes_get_option('inkthemes_twitter') != '') { ?>
                    <li class="sl-5"><a href="<?php echo inkthemes_get_option('inkthemes_twitter'); ?>"><span></span></a></li>
                <?php } ?>           
                <?php if (inkthemes_get_option('inkthemes_dribble') != '') { ?>
                    <li class="sl-6"><a href="<?php echo inkthemes_get_option('inkthemes_dribble'); ?>"><span></span></a></li>
                <?php } ?>                       
                <?php if (inkthemes_get_option('inkthemes_forrst') != '') { ?>
                    <li class="sl-7"><a href="<?php echo inkthemes_get_option('inkthemes_forrst'); ?>"><span></span></a></li>
                <?php } ?>           
            </ul>
        </div>
    </div>
    <!--End Footer bottom inner-->
    <!--End Footer bottom-->
    </div>
    </div>
    </div>
    <?php wp_footer(); ?>
    </body>
    </html>
    
     
  3. flip123

    flip123 New Member

    Joined:
    Dec 13, 2012
    Messages:
    7
    Likes Received:
    0
    Thank you Gourav,

    That got rid of the highlighted background, but now the words that were highlighted before are showing up in black instead of white. How do I fix this?

    The footers codes worked great.
    Thanks
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a {
    color: white;
    }
     
  5. flip123

    flip123 New Member

    Joined:
    Dec 13, 2012
    Messages:
    7
    Likes Received:
    0
    Thank you!
     

Share This Page