• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Menu

Jaran

Chevereto Member
I am trying to add a menu to my header, but the buttons is not clickable. Its like its just an image in the header :s

Here is a picture off how it looks like:
g


The button's can be clicked or anything.

Here is the code I am using:

Code:
    <div class="header">
      <div class="menu">
        <ul>
          <li><a href="index.html" class="active"><span>Home</span></a></li>
          <li><a href="about.html"><span>About Us</span></a></li>
          <li><a href="portfolio.html"><span>Portfolio</span></a></li>
          <li><a href="contact.html"><span>Contact Us</span></a></li>
        </ul>
      </div>
         </div>

Anyone know how I can make them work properly?
 
your links are wrong

your code:

Code:
<div class="menu">
<ul>
<li>
<a class="active" href="index.html">
<span>Home</span>
</a>
</li>
<li>
<a href="about.html">
</li>
<li>
<a href="portfolio.html">
<span>Portfolio</span>
</a>
</li>
<li>
<a href="contact.html">
<span>Contact Us</span>
</a>
</li>
</ul>

you put <a href="...

but not url+path

code have to be:

Code:
<a href="http://simpleshare.org/content/themes/Paefowl/pages/contact.html">
 
Avast said:
your links are wrong

your code:

Code:
<div class="menu">
<ul>
<li>
<a class="active" href="index.html">
<span>Home</span>
</a>
</li>
<li>
<a href="about.html">
</li>
<li>
<a href="portfolio.html">
<span>Portfolio</span>
</a>
</li>
<li>
<a href="contact.html">
<span>Contact Us</span>
</a>
</li>
</ul>

you put <a href="...

but not url+path

code have to be:

Code:
<a href="http://simpleshare.org/content/themes/Paefowl/pages/contact.html">

This is not the problem :/

The button's cant be clicked at all. It's just like there is no button's there, just an image off them. Go to the site and try to click on then you would understand. Tried to change to what you said too just for fun, and nothing happend :p

Any other suggestions?
 
Back
Top