We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[ C ] Quicklinks
Topic Started: Aug 26 2015, 02:12 AM (262 Views)
Devourz
Member Avatar
Member
[ *  *  * ]
is it possible to get something like zetaboards quick links (example: http://prntscr.com/88zjyb) for my forums?
Offline Profile Goto Top
 
-The-
Member Avatar
#the { display: none; }
[ *  *  *  *  * ]
Code:
 
<div id="footer_links">
<div id="inside">
<ul>
<li>Useful Links
<ul>
<!-- <li><a href="http://support.zathyus.com/pages/staff_apps/">Join Our Team!</a></li> -->
<li><a href="http://docs.zetaboards.com/">ZetaDoc</a></li>
<li><a href="http://www.zetaboards.com/directory/">ZetaBoards Directory</a></li>
<li><a href="http://www.zIFBoards.com/directory/">zIFBoards Directory</a></li>
</ul>
</li>
<li>Legal Information
<ul>
<!--<li><a href="http://www.zetaboards.com/privacy/">Privacy Policy</a></li>-->
<li><a href="http://www.zetaboards.com/tos/">Terms of Service</a></li>
<li><a href="http://www.zetaboards.com/tou/">Terms of Use</a></li>
<li><a href="http://www.zetaboards.com/sale_terms/">Terms of Sale</a></li>
</ul>
</li>
<li>Report Abuse
<ul>
<li><a href="http://www.zetaboards.com/report/">ZetaBoards</a> · <a href="http://www.zIFBoards.com/report/">zIFBoards</a></li>
<!--<li><a href="http://www.zIFBoards.com/report/"> zIFBoards</a></li>-->
<li><a href="http://www.zetaboards.com/dmca/">Copyright Infringement</a></li>
<li><a href="http://docs.zetaboards.com/report">Report Guidelines</a></li>
</ul>
</li>
<li>Follow Us
<ul>
<li><a href="http://twitter.com/#!/zetaboards">ZetaBoards on Twitter</a></li>
<li><a href="http://www.facebook.com/pages/ZetaBoards/29179577823?ref=ts">ZetaBoards on Facebook</a></li>
<li><a href="http://www.facebook.com/pages/InvisionFree/20134502192?ref=ts">zIFBoards on Facebook</a></li>
</ul>
</li>
</ul>
</div>
I actually only just copied this off ZNSR itself, and haven't changed any links, but it's likely that it'd be coded in this way anyway, or very similar, so I hope they don't mind. Change the links, link names and category names as applicable.
Offline Profile Goto Top
 
Devourz
Member Avatar
Member
[ *  *  * ]
-The-
Aug 26 2015, 06:51 AM
Code:
 
<div id="footer_links">
<div id="inside">
<ul>
<li>Useful Links
<ul>
<!-- <li><a href="http://support.zathyus.com/pages/staff_apps/">Join Our Team!</a></li> -->
<li><a href="http://docs.zetaboards.com/">ZetaDoc</a></li>
<li><a href="http://www.zetaboards.com/directory/">ZetaBoards Directory</a></li>
<li><a href="http://www.zIFBoards.com/directory/">zIFBoards Directory</a></li>
</ul>
</li>
<li>Legal Information
<ul>
<!--<li><a href="http://www.zetaboards.com/privacy/">Privacy Policy</a></li>-->
<li><a href="http://www.zetaboards.com/tos/">Terms of Service</a></li>
<li><a href="http://www.zetaboards.com/tou/">Terms of Use</a></li>
<li><a href="http://www.zetaboards.com/sale_terms/">Terms of Sale</a></li>
</ul>
</li>
<li>Report Abuse
<ul>
<li><a href="http://www.zetaboards.com/report/">ZetaBoards</a> · <a href="http://www.zIFBoards.com/report/">zIFBoards</a></li>
<!--<li><a href="http://www.zIFBoards.com/report/"> zIFBoards</a></li>-->
<li><a href="http://www.zetaboards.com/dmca/">Copyright Infringement</a></li>
<li><a href="http://docs.zetaboards.com/report">Report Guidelines</a></li>
</ul>
</li>
<li>Follow Us
<ul>
<li><a href="http://twitter.com/#!/zetaboards">ZetaBoards on Twitter</a></li>
<li><a href="http://www.facebook.com/pages/ZetaBoards/29179577823?ref=ts">ZetaBoards on Facebook</a></li>
<li><a href="http://www.facebook.com/pages/InvisionFree/20134502192?ref=ts">zIFBoards on Facebook</a></li>
</ul>
</li>
</ul>
</div>
I actually only just copied this off ZNSR itself, and haven't changed any links, but it's likely that it'd be coded in this way anyway, or very similar, so I hope they don't mind. Change the links, link names and category names as applicable.
EDIT: i found where to place the code you've given me however it ends out like this: http://prntscr.com/892849


is there anyway to make it into 4 row things like this: http://prntscr.com/8928fh












- Thanks in advance!!
Edited by Devourz, Aug 26 2015, 07:38 AM.
Offline Profile Goto Top
 
-The-
Member Avatar
#the { display: none; }
[ *  *  *  *  * ]
Ah, my mistake. I forgot to grab the styling along with it. Place the following in your Theme Appearances of each theme and edit the color and background attributes as necessary:
Code:
 
/* footer ----------------------------------------------------- */
#footer_links {
clear: both;
background: #fff;
/*border-top: 1px solid #CFE1EC;*/
color: #000;
}

#footer_links #inside {
width: 890px;
margin: 0 auto;
padding: 0;
height: 135px;
}

#footer_links #inside a{
color: #17528E;
}

#footer_links #inside a:hover{
color: #333;
}
#footer_links #inside ul {
float: left;
}
#footer_links #inside li{
display: block;
float: left;
width: 190px;
margin-top: 8px;
margin-right: 20px;
list-style: none;
font-weight: bold;
font-size: 14px;

}

#footer_links #inside ul li ul {
float: none;
margin: 0;
padding: 0;
list-style: none;
}
#footer_links #inside ul li ul li{
font-weight: normal;
font-size: 12px;
}

#footer_links #inside #copyright2 {
float: right;
font-size: 13px;
margin-top: 25px;
line-height: 21px;
}
Once again, this is from ZNSR.
Edited by -The-, Aug 26 2015, 10:20 AM.
Offline Profile Goto Top
 
Devourz
Member Avatar
Member
[ *  *  * ]
-The-
Aug 26 2015, 10:20 AM
Ah, my mistake. I forgot to grab the styling along with it. Place the following in your Theme Appearances of each theme and edit the color and background attributes as necessary:
Code:
 
/* footer ----------------------------------------------------- */
#footer_links {
clear: both;
background: #fff;
/*border-top: 1px solid #CFE1EC;*/
color: #000;
}

#footer_links #inside {
width: 890px;
margin: 0 auto;
padding: 0;
height: 135px;
}

#footer_links #inside a{
color: #17528E;
}

#footer_links #inside a:hover{
color: #333;
}
#footer_links #inside ul {
float: left;
}
#footer_links #inside li{
display: block;
float: left;
width: 190px;
margin-top: 8px;
margin-right: 20px;
list-style: none;
font-weight: bold;
font-size: 14px;

}

#footer_links #inside ul li ul {
float: none;
margin: 0;
padding: 0;
list-style: none;
}
#footer_links #inside ul li ul li{
font-weight: normal;
font-size: 12px;
}

#footer_links #inside #copyright2 {
float: right;
font-size: 13px;
margin-top: 25px;
line-height: 21px;
}
Once again, this is from ZNSR.
Thanks works like a charm








/Moderators you can close this topic now
Offline Profile Goto Top
 
Moonface
Member Avatar


Completed!

Your request has been completed. If you have any questions or concerns regarding the state of your request, please feel free to contact me via PM.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic