Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
215 views
in Technique[技术] by (71.8m points)

php - Avada theme wordpress customization

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

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

1 Reply

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...