• Hi,
    is there a way to insert the social icons, like the ones in the sidebar and footer into the topbar, just left to the search button?
    Also, how do I change the title and tagline font color?
    Thanks

    https://www.dodomag.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    I don’t know about social buttons.

    For the title/tagline font colors, if changing the colors on the styling tab under the theme options do not allow you to change what you need, I guess using a custom CSS plugin will do the trick.

    in header.php
    25 str

    <div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>

    replace to

    <div class="nav-wrap container"><?php alx_social_links() ; ?><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>

    in style.css

    .social-links { float: right; position: relative; padding-top: 2px; }

    replace to

    .social-links { float: right; position: relative; padding-top: 12px; padding-right: 70px; }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Social icons in topbar?’ is closed to new replies.