• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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 😛

Any other suggestions?
 
Back
Top