This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

Change Header Right Side

  • Creator
    Topic
  • #345
    kings05
    Member

    On the right side of the header where it has the social icons and a phone number below I want to take out the social icons and have the phone number a much bigger font that covers a third of the screen.  How do I do that?

    Thanks,

    Jared

Viewing 3 replies - 1 through 3 (of 3 total)
  • Author
    Replies
  • #346
    Jason Bobich
    Keymaster

    Hello,

    This area is controlled with the hook “themeblvd_header_addon” which you can utilize from your Child theme’s functions.php.

    http://dev.themeblvd.com/tutorial/primary-framework-action-hooks/

    function my_header_addon(){
    	?>
    	Your custom stuff…
    	<?php 
    }
    remove_all_actions( 'themeblvd_header_addon' );
    add_action( 'themeblvd_header_addon', 'my_header_addon' );

    From there, you’ll be left with your CSS customizations to place everything how you want.

    #432
    inetinitiatives
    Participant

    Can you provide the code for just adding another element below the phone number line, i.e., NOT removing all actions?

    #442
    Jason Bobich
    Keymaster

    You’d need to edit the function “swagger_social_media” found in /includes/theme-functions.php — You can copy this function to your Child theme to edit it. Here’s how that works:

    http://dev.themeblvd.com/tutorial/editing-framework-functions/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The forum ‘Swagger Responsive WordPress Theme’ is closed to new topics and replies.