• I am wondering if there is a plugin or how to edit my site as i want to add ads under my nav bar like this site https://www.johnchow.com/ – notice the small affiliate ads where it says TTZ media, papperjam network etc> i want to do something similar on my site. Many thanks

Viewing 1 replies (of 1 total)
  • You will have to use a DIV element to add to your theme and then add the images inside of that along with whatever else you want in there.

    It would look something like…

    <html>
    <head>
    <title>Blah</title>
    </head>
    <body>
    <div id="page">
    <div id="header">
    Header stuff goes here
    </div>
    <div id="mainnav">
    Main navigation goes here
    </div>
    <div id="adsbar">
    Ad bar goes here
    </div>
    <div id="body">
    Body stuff goes here
    </div>
    </div>
    </body>
    </html>

    Something along those lines, if you are still having issues lemme know and I’ll continue on.

Viewing 1 replies (of 1 total)
  • The topic ‘How to add Ads under Navigation Bar’ is closed to new replies.