-
AuthorPosts
-
July 30, 2014 at 5:29 pm #297834
1. In the header on the left hand side (Header Phone Number/Extra Info) I have our contact phone number. Contact Us Today 111.111.1111 I would like to add a phone icon in front of the phone number followed by an email icon with our email address and have the email as a link so that when users click on the email, it will allow them to directly send us an email.
2. On the right hand side of the top bar instead of using the secondary menu or social icons, I would like to just add some text in. I can’t seem to find a way to do that, can you please help?
Thank you very much for the excellent support!
July 31, 2014 at 7:03 pm #298381Hi djshortkut!
1- Please go to Enfold theme options > Header Layout > Extra Elements and add following lines to “Phone Number or small info text”
<span class="av-icon-char" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>Your number here | <span class="av-icon-char" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span> (Email address hidden if logged out)
2- Can you post the link to your website please?
Cheers!
YigitJuly 31, 2014 at 8:36 pm #298407This reply has been marked as private.August 4, 2014 at 5:19 pm #299775Hi!
1- You just need to simply adjust HTML. Please see – http://www.w3schools.com/html/tryit.asp?filename=tryhtml_mailto
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab@media only screen and (max-width: 480px) { #header_meta .container { width: 100%; }}
3-
.phone-info span { margin-left: 0; padding-left: 0; }
4- Please add your text to the end of “Phone Number or small info text” field in Enfold theme options > Header Layout > Extra Elements inside a div as following
<div class="my-custom-text">License 123-1234-51-23</div>
Then add following code to Quick CSS
.phone-info { width: 100%; } .my-custom-text { float: right; }
Regards,
YigitAugust 4, 2014 at 9:00 pm #299865This reply has been marked as private.August 5, 2014 at 1:53 am #299946Hi!
Thank you for the screenshot.
You can add this:
.my-custom-text { position: absolute; top: 5px; right: 0; }
Best regards,
IsmaelAugust 5, 2014 at 3:20 am #299984This reply has been marked as private.August 5, 2014 at 4:19 am #300020Hi!
Thank you for the screenshot.
Add this at the very bottom:
@media only screen and (max-width: 767px) { .my-custom-text { position: relative; top: 8px; margin: 0 auto; } #header_meta { min-height: 60px; } }
Cheers!
IsmaelAugust 5, 2014 at 7:18 am #300043This reply has been marked as private.August 5, 2014 at 12:11 pm #300162Hi!
Please add following code to Quick CSS to remove the text on screens smaller than 767px
@media only screen and (max-width: 767px) { .my-custom-text { display: none !important; }}
Best regards,
YigitAugust 5, 2014 at 6:44 pm #300366Resolved. Thanks again for the awesome customer support as always!
August 5, 2014 at 6:47 pm #300368 -
AuthorPosts
- The topic ‘Need some help with header’ is closed to new replies.