Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 10 users online :: 0 Registered, 0 Hidden and 10 Guests :: 1 Bot
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
[SOLVED] Moderation Template?
Page 1 of 2 • Share
Page 1 of 2 • 1, 2
Hello,
I wanted to know if anyone knew of any moderation templates? I mean sort of like the ones on the support forum as well as on many others. I thought I already had some, but I guess I didnt. I know it is pretty much a table, I used to do a make shift one 3 years ago, but have since forgot.
-Brandon
I wanted to know if anyone knew of any moderation templates? I mean sort of like the ones on the support forum as well as on many others. I thought I already had some, but I guess I didnt. I know it is pretty much a table, I used to do a make shift one 3 years ago, but have since forgot.
-Brandon
Hey,
Something like this :
If so, add the following to your stylesheet.
Display > Colors > CSS stylesheet
Then you should be able to use the following tables :
Good message
Warning message
Information message
Something like this :
If so, add the following to your stylesheet.
Display > Colors > CSS stylesheet
- Code:
/* staff tables */
table.staff-table {
width:100%;
color:#666;
font-weight:bold;
background:#FFF;
border:1px solid #CCC;
border-radius:3px;
border-spacing:0;
margin:3px 0;
}
table.staff-table td { padding:3px }
table.staff-table td.side-image {
background:no-repeat center center transparent;
border-right:1px dashed #CCC;
width:50px;
height:50px;
}
/* good table */
table.staff-table.good {
color:#686;
background-color:#CFC;
border-color:#ACA;
}
table.staff-table.good td.side-image {
background-image:url(http://i38.servimg.com/u/f38/18/45/41/65/g10.png);
border-color:#ACA;
}
/* warn table */
table.staff-table.warn {
color:#966;
background-color:#FCC;
border-color:#CAA;
}
table.staff-table.warn td.side-image {
background-image:url(http://i38.servimg.com/u/f38/18/45/41/65/w10.png);
border-color:#CAA;
}
/* info table */
table.staff-table.inform {
color:#369;
background-color:#9CF;
border-color:#7AC;
}
table.staff-table.inform td.side-image {
background-image:url(http://i38.servimg.com/u/f38/18/45/41/65/i10.png);
border-color:#7AC;
}
Then you should be able to use the following tables :
Good message
- Code:
[table class="staff-table good"][tr][td class="side-image"][/td][td]This is some good text.[/td][/tr][/table]
Warning message
- Code:
[table class="staff-table warn"][tr][td class="side-image"][/td][td]This is a warning.[/td][/tr][/table]
Information message
- Code:
[table class="staff-table inform"][tr][td class="side-image"][/td][td]This is some information.[/td][/tr][/table]
You're welcome
Of course, except the graphical portion is all done through the CSS this time. You can change the colors, images.. This should help if you want to get a certain color code : http://www.colorpicker.com/
Of course, except the graphical portion is all done through the CSS this time. You can change the colors, images.. This should help if you want to get a certain color code : http://www.colorpicker.com/
Okay, just find parts like this :
The color property changes the color of the text. I'm sure you know where to change the color code there, right ?
- Code:
color:#686;
The color property changes the color of the text. I'm sure you know where to change the color code there, right ?
Yes I know how to do that Ange, thanks.
I have edited one of them, I think I am going to make numerous ones of each color (for those who do not right there own messages):
I have edited one of them, I think I am going to make numerous ones of each color (for those who do not right there own messages):
- Code:
[table class="staff-table good"][tr][td class="side-image"][/td][td]Since this topic has been marked solved, I am moving it to the archive[/td][/tr]
[/table]
That looks good.
You can use them for anything, really. The green one for good messages, red one for bad messages, and blue one for other types of messages. It depends on what you want to use them for !
You can use them for anything, really. The green one for good messages, red one for bad messages, and blue one for other types of messages. It depends on what you want to use them for !
I know thanks Ange, I wanted to show the real thing, but thing didnt work on this forum (I imagine that is because that css is not installed),and i wad feeling to lazy to go upstairs and get my flash drive for a screenshot (as the pc never lets me save images without it).
Yes, I don't have the CSS installed here. I'll be updating the theme soon, so I do not want to add too many personal things at the moment. However, I have an Idea what it might look like.
The colors are similar to the current, but with some additional features, fixed bugs, and updated images. It might take a bit of time, because I have a lot of other projects to work on that take priority, especially those support related..brandon_g wrote:I know right, can not wait to see this new theme.
Yep, I start with the default phpbb3 skin, then I start writing CSS for the theme.. After that I work on graphics.
Uhmm.. I think this will resize the profile avatars for you. Only if they exceed 150*150.
Uhmm.. I think this will resize the profile avatars for you. Only if they exceed 150*150.
- Code:
.post .postdetails.poster-profile a img {
max-height:150px;
max-width:150px;
}
Thank You, this is what I needed, Thanks again Ange, since everyone has apparently upgraded to phpbb3 it is hard to find codes for it. My other admin Samantha pointed out the issue and suggested the code. I knew exactly to go to for it.
Your the best Ange!
Your the best Ange!
Well, with some devtools and knowledge of the Document Object Model, you can really style anything. PhpBB2 is a bit more difficult because almost all elements have the same classname, or they don't have a classname at all ! It's a good version to pick if you like the old school style, or are looking for a fix up challenge. PhpBB3 offers a wider range of classnames and IDs to style them with CSS, or manipulate them with JavaScript. With the ability to finally customize the templates, it offers a whole new level of customization.
Hello,
I just found on my forum the old make shift one I used to use:
I wanted to show you:
I just found on my forum the old make shift one I used to use:
I wanted to show you:
Since this topic is now going to be used for updates on the reviews only: Topic Locked! Marking Topic As important! |
- Code:
[table border="1"][tr][td] [b][color=brown]Since this topic is now going to be used for updates on the reviews only:
[/color][/b] :arrow: [b][color=olive]Topic Locked![/color][/b] [url=http://www.servimg.com/image_preview.php?i=76&u=16037260][img]http://i43.servimg.com/u/f43/16/03/72/60/topic_21.png[/img][/url]
:arrow: [color=orange]Marking Topic As important[b]! [/b][/color][url=http://www.servimg.com/image_preview.php?i=75&u=16037260][img]http://i43.servimg.com/u/f43/16/03/72/60/exclam11.png[/img][/url] [/td]
[/tr]
[/table]
Indeed, You guys make Phpbb2 sound so bad, I know a couple people who's forums still work off of PHPBB.
That was my first try at it... and if you consider the fact that I came up with that while I was viewing my forum from my WII then it is pretty impressive.
That was my first try at it... and if you consider the fact that I came up with that while I was viewing my forum from my WII then it is pretty impressive.
LOL yeah, a lot of us don't like the look of table layouts anymore. They're still useful for certain things though, like databases and stuff. I don't mind them myself.
If you want to get really in depth of designing themes, or tables like that, you should read up on CSS. It's one of the most important things for web design, right next to HTML. Those tutorials are great for beginners with all the interactive examples. It was what kickstarted my learning years ago when I knew nothing.
The wii ? I think that might have a worse browser than my PS3.. when I was developing a browser game the PS3 couldn't even handle it. Don't get me started on the PSP that thing is like worse than the older versions of internet explorer. I think the PS3 was using webkit if I recall, even then it was pretty laggy. Well, what can I expect, they're not dedicated browsers.
If you want to get really in depth of designing themes, or tables like that, you should read up on CSS. It's one of the most important things for web design, right next to HTML. Those tutorials are great for beginners with all the interactive examples. It was what kickstarted my learning years ago when I knew nothing.
The wii ? I think that might have a worse browser than my PS3.. when I was developing a browser game the PS3 couldn't even handle it. Don't get me started on the PSP that thing is like worse than the older versions of internet explorer. I think the PS3 was using webkit if I recall, even then it was pretty laggy. Well, what can I expect, they're not dedicated browsers.
Thanks for the tip Ange, The wii uses a simiplifed version of Oprah. It was not that bad for a basic console. Just could not copy and paste, store images, oh 1 time I had this spam bot on my forum, it took me 20 minutes to remove the text then ban it. I have no idea why I did not just delete the post. LOL. Ah good times those were.
-Brandon
-Brandon
- Sponsored content
Page 1 of 2 • 1, 2
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 1 of 2
Permissions in this forum:
You cannot reply to topics in this forum