Title: themeshaker's Replies | WordPress.org

---

# themeshaker

  [  ](https://wordpress.org/support/users/themeshaker/)

 *   [Profile](https://wordpress.org/support/users/themeshaker/)
 *   [Topics Started](https://wordpress.org/support/users/themeshaker/topics/)
 *   [Replies Created](https://wordpress.org/support/users/themeshaker/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/themeshaker/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/themeshaker/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/themeshaker/engagements/)
 *   [Favorites](https://wordpress.org/support/users/themeshaker/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Problem with child theme](https://wordpress.org/support/topic/problem-with-child-theme-4/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/problem-with-child-theme-4/#post-4895542)
 * Thanks **sdavis2702** for helping Felice to identify the problem. I’m glad that
   the issue is resolved now.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Edit Front Page CSS](https://wordpress.org/support/topic/edit-front-page-css/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/edit-front-page-css/#post-4857990)
 * Hi,
 * Yes, it’s possible. You are able to target whatever page you want with body classes:
 * [http://codex.wordpress.org/Function_Reference/body_class](http://codex.wordpress.org/Function_Reference/body_class)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Drop Shadow on Nav Text](https://wordpress.org/support/topic/drop-shadow-on-nav-text/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/drop-shadow-on-nav-text/#post-4726954)
 * I consider this topic as resolved
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] can the social media icons open new window?](https://wordpress.org/support/topic/can-the-social-media-icons-open-new-window/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/can-the-social-media-icons-open-new-window/#post-4751909)
 * Hi Peter,
 * There’s always a way to modify a theme to make it work for you. If you need social
   media icons to open in a new window, locate the **template-tags.php** file in
   your theme’s folder and replace this:
 * `echo '<a href="'.$url.'" class="social-icon">`
 * with the following:
 * `echo '<a href="'.$url.'" class="social-icon" target="_blank">`
 * It’s a very basic change, so next time you should try to work it out yourself.
   There’s a limit on how much and how often we can help with modifications 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Drop Shadow on Nav Text](https://wordpress.org/support/topic/drop-shadow-on-nav-text/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/drop-shadow-on-nav-text/#post-4726942)
 * Simply replace the following code in your .css file
 *     ```
       .main-navigation a {
           text-shadow: 2px -1px 1px #BE3243;
           color: #FFF;
       }
       ```
   
 * with
 *     ```
       .main-navigation a {
           text-shadow: none !important;
           color: #FFF;
       }
       ```
   
 * that should save the day for you 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Mobile menu is there – but invisible!](https://wordpress.org/support/topic/mobile-menu-is-there-but-invisible/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-is-there-but-invisible/#post-4684960)
 * That’s just coloring. The link color of mobile navigation is white by default,
   but you can change it easily:
 * _./themes/undiscovered/css/slicknav.css_ on line 68
 *     ```
       .slicknav_nav a {
           color: #fff !important;
           text-transform: uppercase;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Center Navigation](https://wordpress.org/support/topic/center-navigation-5/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/center-navigation-5/#post-4678723)
 * You’re welcome 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Center Navigation](https://wordpress.org/support/topic/center-navigation-5/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/center-navigation-5/#post-4678658)
 * Hi PWalberg,
 * The menu is floating on the left within reason. It is not a single object on 
   that line and a simple use of ‘text-align’ property won’t do the trick. In order
   to center the navigation on this theme, try the following modifications:
 *  .main-navigation ul {
    text-align: center; }
 *  .main-navigation li {
    float: none; display: inline-block; }
 *  .site-header .search-form {
    display: none; }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Customize link's color bypassing default option](https://wordpress.org/support/topic/customize-links-color-bypassing-default-option/)
 *  Theme Author [themeshaker](https://wordpress.org/support/users/themeshaker/)
 * (@themeshaker)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/customize-links-color-bypassing-default-option/#post-4597041)
 * Saeed is right. If you want to override any particular property, !important rule
   is an option. !important declaration gives a CSS value enough weight to override
   the original one.

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