Quote:
Originally Posted by skellington88
Look, in the wesite builder, left side top, i can make a second menu but i can make that it show in the page, how i can do that??

|
Hi, im also new too
and have similiar problem with you
finally i've got my problem solve by using this :
1. go to your cpanels and click file manager
2. open your template html in the public_html folder and clik edit, before you change anything dont forget to save it, you can save by download the template or block all and copy all the text and save it as with notepad as a txt.
3. in template edit mode search the CSS part to defined how your menu look, paste the next code under
<style type="text/css">
<!--
or before
-->
this is the CSS code:
ul#navlist
{
width: 158px;
\width: 160px;
w\idth: 158px;
padding: 0px;
border: 1px solid #808080;
border-top: 0px;
margin: 0px;
font: bold 12px verdana,helvetica,arial,sans-serif;
background: #808080;
}
ul#navlist li
{
list-style: none;
margin: 0px;
border: 0px;
border-top: 1px solid #808080;
}
ul#navlist li a
{
display: block;
width: 122px;
\width: 158px;
w\idth: 122px;
padding: 4px 8px 4px 8px;
border: 0px;
border-left: 20px solid #aaaabb;
background: #ccccdd;
text-decoration: none;
text-align: right;
}
ul#navlist li a:link { color: #666677; }
div#navcontainer li a:visited { color: #666677; }
ul#navlist li a:hover
{
border-color: #ff9000;
color: #ffffff;
background: #000d33;
}
4. after paste the CSS code, now go to the table where your going to put the link, if your going to put it as a left vertical menu link than search your left table, my left table have news label from the template so i just type news to search for my left table.
5. after you find where your left table in your template html, paste this code between <table> or before </table> tag
you just have to watch the list to define where your going to put it.
here the codes:
<tr>
<td>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>
</td>
</tr>
6. after that you are done, to link it just change the # simbol with your page address and your menu and link is ready to use.
i hope it can help you a little, im sorry cause im also a newbie and sorry for my bad english.