Welcome Guest [Log In] [Register]

Welcome to Big Boards. We hope you like what you see and decide to visit often. Big Boards offers the Zathyus network our long famous Resource Archives, our extensive search indexes, and our info-packed resource forums.

Our team has recently opened a new project called Planet Nexus, where a bold new experiment in forum promotion is taking place. We call it nexworking. NexusTree offers social networking pages for forums in a fully automated format. Your NexusTree page is created instantly when your join the nexus. Find out more by visiting Planet Nexus, and become part of the nexworking revolution.

Posted Image Posted Image
If you're already a member please log in to your account for additional access:

Username:   Password:
Add Reply
Random help
Topic Started: Sep 17 2009, 12:42 AM (177 Views)
stephhh
BB Gamma
[ *  *  * ]
Your Issue/Question:
1. How to add more colors in the text page? In this board you guys have loads of color options...I want something similar for my board too

2. Can there be a code similar to IF's "My Assistant" for ZB too?

3.what's the process in ZB to resize a big picture in the posting page?

4. can there be a code similar to Facebook's "Like" comment thin in ZB too? so members can appreciation other members' comments by clicking that button and encouraging good comments?

5. I am looking for a theme similar to Tropical night of this forum but I couldn't find a close match, can anyone help me please?

and

6. how to transfer the choose a theme button on top of the board, mayb in the navigation bar?


thanks and sorry for asking so many questions :blush: :blush:
Edited by stephhh, Sep 17 2009, 12:48 AM.
Offline
Profile
Quote Post
Goto Top
 
Cory
Member Avatar
Technical Adviser

1.) Use one of these codes.

2, 4.) It would require a newly created code, which you'd have to request.

3.) Add the following strip to your CSS and edit the text highlighted in green to your specified width.
Quote:
 
.c_post img, #topic_review img {
max-width: 600px;
}
5.) Have you checked all the dark themes here?

6.) Add the following strip to your CSS.
Code:
 
#foot_themechooser {
border: none;
background: none;
float: left;
margin-top: -20px;
}
Add the following code to your Board Template in the Below the Board textarea.
Code:
 
<script type="text/javascript">
$("#foot_themechooser").insertBefore("#nav");
</script>
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
thank you so much Cory you are amazing person

I have another question is there a code where members can post comments on other members' profiles? Like
Hi how are you?
nice post

etc

I have seen such feature in other boards

and another thing about requesting codes...where shall I request for new codes?

Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
sorry for double posting as that edit function is messing up in my browser

I have checked the themes but couldn't find a better match to tropical nights
Offline
Profile
Quote Post
Goto Top
 
Moonface
Member Avatar
BB Delta
[ *  *  *  * ]
I would recommend ZBCode for requests. Since they specialise in codes you're certain to find someone there who can make the code, as long as it is possible of course. ;)
Posted Image
Explore A Brand New Universe!
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
where is that place?
Offline
Profile
Quote Post
Goto Top
 
Cory
Member Avatar
Technical Adviser

http://zbcode.com/

There appears to be no "comment" codes for ZB. There were two or three made for IF. It's another code you'll have to request.

I recommend searching around ZB Theme Zone for a theme that is similar to Tropical Night. If all else fails, request one.
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
this code isn't working, its not appearing in the topic posting page...I put that on below the board section

<script type="text/javascript"> <!--
var colors = ["magenta", "lime", "aqua", "crimson", "Fuchsia", "Brown", "Teal", "Darkorange", "tan", "olive", "khaki", "orchid", "pink", "gray", "silver", "sienna"];
if(document.posting && document.posting.fcolor) $("select[@name=fcolor]").each(function() {
for(var j = 0, f = this.options.length; j < colors.length; j++) this.options[f + j] = new Option(colors[j], colors[j]);
for(var i = 1; i < this.options.length; i ++) this.options.style.color = this.options.value;
});
// --> </script>
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
can anyone plz help me installing the color code properly???
Offline
Profile
Quote Post
Goto Top
 
HelenaZF
Member Avatar
advanced techno-feeb

I can't seem to get that version of the code working, but you can install this one (from the same topic) that allows a name in the dropdown and the hex code in the posting text area. Just make the hex numbers match the color names if you don't want hex code appearing in the BB code that inserts. ( Each color has two entries, so that you can make one appear in the dropdown and the other in the BB code insertion.)

Like this:
var colors = [["Displayed in Dropdown", "Displayed in UBBC"], ["Ditto", "Ditto 2"]];

Code:
 
<script type="text/javascript"> <!--
var x = [["Deeppink2", "#ee1289"], ["Slateblue", "#7a67ee"], ["Royalblue", "#3333ff"], ["Turquoise2", "#00e5ee"], ["Seagreen2", "#4eee94"], ["Red3", "#cd0000"], ["Magenta3", "#cd00cd"], ["Papaya", "#ffff7e"], ["Plum2", "#eaadea"], ["Violetred", "#db2645"]];
if(document.posting && document.posting.fcolor) (function() { var z = document.posting.fcolor;
for(var i = 0, j = z.options.length; i < x.length; i ++) z.options[i + j] = new Option(x[i][0], x[i][1]);
for(var i = 1; i < z.options.length; i ++) z.options[i].style.color = z.options[i].value; })();
// --> </script>
Posted Image Visit the Planet Nexus page!Posted Image

Posted Image
Download some of my graphic sets HERE
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
thanks Helena, it works

I noticed the custom ZB alert message of pm isn't working for my board. Is there any good code for PM alert message which aware members of their inbox getting new pms?? like the inbox flashes etc

and what can I do to encourage members for better replies instead pf just 1 or 2 words post
Offline
Profile
Quote Post
Goto Top
 
stephhh
BB Gamma
[ *  *  * ]
I used to have a imageshack uploading code on the posting page before but it got removed now, can anyone please tell me where I can find the code now?

and I need a mod tool in the fast reply box so that while replying a topic, I can perform the moderation too
Offline
Profile
Quote Post
Goto Top
 
HelenaZF
Member Avatar
advanced techno-feeb

ImageShack uploader:
http://support.zetaboards.com/topic/160216/1/


Fast Reply Mod Tools:
http://support.zetaboards.com/topic/3553/1/

Posted Image Visit the Planet Nexus page!Posted Image

Posted Image
Download some of my graphic sets HERE
Offline
Profile
Quote Post
Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · ZetaBoards · Next Topic »
Add Reply