Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need help adding a company phone number above the nav menu in the header for the Avada theme. Below is the code for the header.php in avada theme [code missing, forgot to add].

Also can someone tell me where to add the phone number in the code so it shows up above the nav bar on the header in theme? can anybody else hep me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
213 views
Welcome To Ask or Share your Answers For Others

1 Answer

You forgot to add the code.

However, based on this demo: http://demo.theme-fusion.com/ and the limited info you're giving me, I'm guessing that you want the phone number above the top nav. If so, then do as follows:

#nav {
    margin-top: 50px;
}
#phone {
    float: right;
    margin: 40px 15px -40px 0;
    font-family: MuseoSlab500Regular, arial, helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

Find:

<div class="logo" ... </div>

add a div after:

<div class="logo" ... </div><div id="phone">888-888-8888</div>

Now you have a phone number above the top nav bar! Enjoy!

p.s. if you implemented correctly it should look like this now:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...