• I am trying to add text to the top right under the social media.
    I tried setting the widgets for the header, but it put them under the slider?

    See this link how I have just added the text but want it styled and perhaps flush right under social media.

    https://susanenewman.com/wordpress/

    Thanks, Susan

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter SuzyB

    (@suzyb)

    Is anyone out there?
    SuzyB

    Hi Suzy
    Did you find an answer?
    I would suggest either seeing if you can use a css style to align the tag line text underneath, or make a child theme, then use the header.php to add the text within the html

    Hi Suzy,

    I agree with zanet. The best answer is to create a child theme and edit your header file. It’s reall pretty simple. Find the section below in your header.php file.

    <!--BEGIN .container-->
    	<div class="container container-header <?php $evolve_width_layout = evolve_get_option('evl_width_layout','fixed'); if( get_header_image() && $evolve_width_layout == "fixed" ): echo 'custom-header'; endif;?>">
    PUT YOUR CODE RIGHT HERE WITH SOME CSS <img style="float: right; vertical-align: middle; margin-right: 125px;"
       <?php $evolve_social_links = evolve_get_option('evl_social_links','1'); if ( $evolve_social_links == "1" ) { ?>

    Look at my site [moderated]. Play with your css a little and you’re done!

    Hi Suzy,

    Thanks for writing in,

    If you wish to achieve something similar to this please follow this link: (https://prntscr.com/6yvn6w)
    you have to put some code into you CSS as given below:

    #righttopcolumn {
      float: right;
      position: relative;
      z-index: 100;
      text-align: right;
      padding-top: 20px;
    }
    
    #social {
      float: right;
      position: absolute;
      right: 0;
      top: 0;
    }

    I hope this helps,
    Thanks!

    Hi Suzy,

    Can you tell me how you added your text in the header? I used the suggested CSS code above to get the text to float right, but I’m not sure where to add text. Right now I only have social icon. Could you help me navigate? FYI: I’m a novice.

    Hi marketingmccue,

    If you need help. Please create a new thread and also post your site url.

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Add text to top right in header Evolve theme’ is closed to new replies.