Forum

Whether it's a plugin thats causing issues, a theme, or just needed help with styling your site...We can help! Live Person Support for all your Wordpress Needs!

Welcome Guest

Pages: 1
Column layout? (SOLVED)
GT5GuidePostJun 11 2011, 03:35 AM

Newbie
Posts: 7
Registered:
May 30 2011, 01:20 PM
Normal topicColumn layout? (SOLVED)

Is there any way to make culumns, tabels or use tabs in a post? Everything I tried didnt work :( Im trying to make a list of names and laptimes. I would like a culumn of tabel for the names and one for the laptimes to make it look clear. I hope you understand what I mean :?



Shrink, Track, Share, Control ... Dominate
jschiresPostJun 11 2011, 07:57 AM

Pro
Posts: 202
Registered:
May 21 2010, 11:15 AM
Normal topicRe: Column layout?

Im not sure I understand...You want columns that users can post in, in your forum?

Owner of http://icomnow.com, http://istore.icomnow.com, and more! Developer of plugins and addons for Mingle, Mingle Forum, and Facebook Integration. Get over 100 plugins and addons for Mingle & Mingle Forum at http://istore.icomnow.com

GT5GuidePostJun 11 2011, 08:48 AM

Newbie
Posts: 7
Registered:
May 30 2011, 01:20 PM
Normal topicRe: Column layout?

I'll try to explain what i mean with an example ;)

I want to make this:

Rank PSN-naam Tijd Online rank
1. GT5Guide_Tarzan 0:45,723 10
2. GT5Guide_Gurdi 0:45,743 11
3. Socciebon 0:45,748 12

Look like this:
Image

ArtofPicPostJun 11 2011, 09:54 AM

Pro
Posts: 198
Registered:
Apr 18 2011, 02:41 PM
Normal topicRe: Column layout?

add new bbcode

open bbcode.php

search for

'/\[color=(\#[0-9a-f]{6}|[a-z]+)\](.+)\[\/color\]/Ui',
'/\[color=(\#[0-9a-f]{6}|[a-z]+)\](.+)\[\/color\]/Uis'

replaced with

'/\[color=(\#[0-9a-f]{6}|[a-z]+)\](.+)\[\/color\]/Ui',
'/\[color=(\#[0-9a-f]{6}|[a-z]+)\](.+)\[\/color\]/Uis',
'/\[table\](.+)\[\/table\]/Uis',
'/\[tr\](.+)\[\/tr\]/Uis',
'/\[td\](.+)\[\/td\]/Uis'

search for

'<span style = "color: \1;">\2</span>',
'<div style = "color: \1;">\2</div>'

replaced with

'<span style = "color: \1;">\2</span>',
'<div style = "color: \1;">\2</div>',
'<table>\1</table>',
'<tr>\1</tr>',
'<td>\1</td>'

add to Skin style.css

.wpf-meta-table .topic_text td {
    border: 1px solid #000000 !important;
}
.wpf-meta-table .topic_text table {
    background: #ffffff ;
    border: 1px solid #000000 !important;
    color: #000000;
    width: auto !important;
}

BBCode for Post

[table]
[tr][td][b]Rank[/b][/td][td][b]PSN-naam[/b][/td][td][b]Tijd[/b][/td][td][b]Online rank[/b][/td][/tr]
[tr][td]1.[/td][td]GT5Guide_Tarzan[/td][td]0:45,723[/td][td]10[/td][/tr]
[tr][td]2.[/td][td]GT5Guide_Gurdi[/td][td]0:45,743[/td][td]11[/td][/tr]
[tr][td]3.[/td][td]Socciebon[/td][td]0:45,748[/td][td]12[/td][/tr]
[/table] 

Result

Image

Demo

visit my Blog and my Forum

GT5GuidePostJun 11 2011, 10:21 AM

Newbie
Posts: 7
Registered:
May 30 2011, 01:20 PM
Normal topicRe: Column layout?

Works like a charm :) Thx for your high speed support ;)

jschiresPostJun 11 2011, 11:14 AM

Pro
Posts: 202
Registered:
May 21 2010, 11:15 AM
Normal topicRe: Column layout?

Very nice!

Owner of http://icomnow.com, http://istore.icomnow.com, and more! Developer of plugins and addons for Mingle, Mingle Forum, and Facebook Integration. Get over 100 plugins and addons for Mingle & Mingle Forum at http://istore.icomnow.com

ArtofPicPostJun 11 2011, 11:50 AM

Pro
Posts: 198
Registered:
Apr 18 2011, 02:41 PM
Normal topicRe: Column layout?

add Button for Table-BBCode

open wpf-class.php

search for

<a title="'.__("Add Hex Color", "mingleforum").'" href="javascript:void(0);" onclick=\'surroundText("[color=#]", "[/color]", document.forms.addform.message); return false;\'><img src="'.$this->skin_url.'/images/bbc/color.png" /></a>

add after

<a title="table" href="javascript:void(0);" onclick=\'surroundText("[table]", "[/table]", document.forms.addform.message); return false;\'><img src="'.$this->skin_url.'/images/bbc/table.png" /></a>
<a title="table-tr" href="javascript:void(0);" onclick=\'surroundText("[tr]", "[/tr]", document.forms.addform.message); return false;\'><img src="'.$this->skin_url.'/images/bbc/tr.png" /></a>
<a title="table-td" href="javascript:void(0);" onclick=\'surroundText("[td]", "[/td]", document.forms.addform.message); return false;\'><img src="'.$this->skin_url.'/images/bbc/td.png" /></a>

add the Buttons into the Skin / images / bbc Folder

ImageImageImage

visit my Blog and my Forum

GT5GuidePostJun 11 2011, 12:42 PM

Newbie
Posts: 7
Registered:
May 30 2011, 01:20 PM
Normal topicRe: Column layout?

@ ArtofPic
Wow! I was just wondering how I could let the forum users know how to post tables. Before I was able to ask, you already posted the answer :D Thx for your help.

manukankaniPostAug 05 2011, 12:30 AM

Newbie
Posts: 10
Registered:
Jun 22 2011, 10:05 AM
Normal topicRe: Column layout? (SOLVED)

Artof pic is gem.. He made his forum amazingly wow.. I visited his site..
Hats off to you man!!
Can you put some guide of "how-to" things which you've implemented on your site.

cophookPostAug 22 2011, 04:56 AM

Newbie
Posts: 2
Registered:
Aug 22 2011, 10:43 AM
Normal topicRe: Column layout? (SOLVED)

nice

Pages: 1
Mingle Forum by Cartpauj | Version: 1.1.0beta | Page loaded in: 0.417 seconds.


Shrink, Track, Share, Control ... Dominate