Centering multiple forums in one?
5 posters
Page 1 of 1
Centering multiple forums in one?
Link to my forum: https://onepiecerp.forumotion.com/
Forum version is PunBB btw.
Aight so I tried out the whole multi forum in one thing, but I want the forums to be centered in the middle and separated out a bit.
Forum version is PunBB btw.
Aight so I tried out the whole multi forum in one thing, but I want the forums to be centered in the middle and separated out a bit.
Re: Centering multiple forums in one?
Did you create the table? If yes, you have all your forums in just one of the boxes.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
I just followed the tutorial here: https://help.forumotion.com/t21989-multi-forums-in-one
Re: Centering multiple forums in one?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
Please post here using the code tags what you added.
Checking your forum, I can see that there is a table there, but all the information is in just of the boxes.
Checking your forum, I can see that there is a table there, but all the information is in just of the boxes.
Last edited by SLGray on November 13th 2019, 8:51 pm; edited 1 time in total
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
- Code:
<table style="width: 100%;" cellpadding="5" cellspacing="5" border="0">
<tbody></tbody>
<tr style="">
<td style="width: 31px;">
<img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" />
</td>
<td style="width: 284px;">
<a href="https://onepiecerp.forumotion.com/f2-forum1">Forum</a><br />Description : this is forum 1
</td>
<td style="width: 31px;">
<img src="https://i.postimg.cc/d34vJw79/shanks-min.png" />
</td>
<td style="width: 279px;">
<a href="https://onepiecerp.forumotion.com/f3-forum2">Forum</a><br />Description : this is forum 2
</td>
</tr><tbody> </tbody>
<tr style="">
<td>
<img src="https://i.postimg.cc/HkLncPdx/ace-min.png" />
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f4-forum3">Forum</a><br />Description : this is forum 3
</td>
<td>
<img src="https://i.postimg.cc/ht3j9bt0/chopper-min.png" />
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f5-forum4">Forum</a><br />Description : this is forum 4
</td>
</tr><tbody></tbody>
</table>
Re: Centering multiple forums in one?
Remove this:
- Code:
<body></body>
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
There was a tbody tag in the middle which shouldn't be there.. this is the correct code:
- Code:
<table style="width: 100%;" cellpadding="5" cellspacing="5" border="0">
<tbody>
<tr>
<td style="width: 31px;">
<img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" />
</td>
<td style="width: 284px;">
<a href="https://onepiecerp.forumotion.com/f2-forum1">Forum</a><br />Description : this is forum 1
</td>
<td style="width: 31px;">
<img src="https://i.postimg.cc/d34vJw79/shanks-min.png" />
</td>
<td style="width: 279px;">
<a href="https://onepiecerp.forumotion.com/f3-forum2">Forum</a><br />Description : this is forum 2
</td>
</tr>
<tr>
<td>
<img src="https://i.postimg.cc/HkLncPdx/ace-min.png" />
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f4-forum3">Forum</a><br />Description : this is forum 3
</td>
<td>
<img src="https://i.postimg.cc/ht3j9bt0/chopper-min.png" />
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f5-forum4">Forum</a><br />Description : this is forum 4
</td>
</tr>
</tbody>
</table>
Re: Centering multiple forums in one?
After putting the above code nothing changed. I just want everything to be centered off and for the forums to have some space between one another.
Re: Centering multiple forums in one?
Do you mean like this:
For more space inbetween you edit the amount of cellpadding and/or cellspacing..
- Code:
<table style="width: 100%;" cellpadding="5" cellspacing="15" border="0">
<tbody>
<tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" />
</td>
<td style="width: 284px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f2-forum1">Forum</a><br />Description : this is forum 1
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/d34vJw79/shanks-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f3-forum2">Forum</a><br />Description : this is forum 2
</td>
</tr>
<tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/HkLncPdx/ace-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f4-forum3">Forum</a><br />Description : this is forum 3
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/ht3j9bt0/chopper-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f5-forum4">Forum</a><br />Description : this is forum 4
</td>
</tr>
</tbody>
</table>
For more space inbetween you edit the amount of cellpadding and/or cellspacing..
Re: Centering multiple forums in one?
Ah, ok. And lastly for centering everything? I thought using table align would work but it doesn't.
Re: Centering multiple forums in one?
You have to add the center HTML tags to each information you have in each column.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
For some reason whenever I try to add the center tags & save it messes up the code.
https://gyazo.com/13a215982f4aa54d4dad273c16738378
It pushes all the center tags to the top like that.
https://gyazo.com/13a215982f4aa54d4dad273c16738378
It pushes all the center tags to the top like that.
Re: Centering multiple forums in one?
No, I mean around the information that you want to appear on yoru forum.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
I know..i'm saying that when I add the center tag around the info I want on my forum and click save the code messes up and all the center tags get pushed to the top like in the picture.
Re: Centering multiple forums in one?
I mean this:
- Code:
<td style="width: 31px;">
<center> <img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" /> </center>
</td>
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
Try this code:
This centers the whole table..
- Code:
<center><table style="width: 100%;" cellpadding="5" cellspacing="15" border="0">
<tbody>
<tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" />
</td>
<td style="width: 284px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f2-forum1">Forum</a><br />Description : this is forum 1
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/d34vJw79/shanks-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f3-forum2">Forum</a><br />Description : this is forum 2
</td>
</tr>
<tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/HkLncPdx/ace-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f4-forum3">Forum</a><br />Description : this is forum 3
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/ht3j9bt0/chopper-min.png" />
</td>
<td style="width: 279px; text-align:center;">
<a href="https://onepiecerp.forumotion.com/f5-forum4">Forum</a><br />Description : this is forum 4
</td>
</tr>
</tbody>
</table></center>
This centers the whole table..
Re: Centering multiple forums in one?
Welcome to ESF @lilgio,
Where do you want it to be centered?
Using the printscreen as the reference in the middle of the box?
Where do you want it to be centered?
Using the printscreen as the reference in the middle of the box?
Re: Centering multiple forums in one?
I want everything in the table centered horizontally where the red line is. And then I wanted the forums to be kinda separated from one another where the red dots are.
https://i.postimg.cc/bN00xSNm/Annotation-2019-11-14-180427.png
^ @pedxz
https://i.postimg.cc/bN00xSNm/Annotation-2019-11-14-180427.png
^ @pedxz
Re: Centering multiple forums in one?
I believe you are not using the correct coding When I inspect the elements on your forum, it looks like you added all the information into just one of the table's column.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Centering multiple forums in one?
I removed the center tags after because it didn't work originally.
Re: Centering multiple forums in one?
There were some mistakes in the code and there is kind of a mistake in your template I guess, because the second half of that area is not accessable.. The right code is this:
See what it looks like on a screenshot:
That second part is the part where usually the Topics, Views and last topics are displayed..
- Code:
<table style="width: 100%;" cellpadding="5" cellspacing="15" border="0">
<tbody><tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/c1MLDNJC/corazon-min.png" width="31px">
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f2-forum1">Forum</a><br>Description : this is forum 1
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/d34vJw79/shanks-min.png" width="31px">
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f3-forum2">Forum</a><br>Description : this is forum 2
</td>
</tr>
<tr>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/HkLncPdx/ace-min.png" width="31px">
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f4-forum3">Forum</a><br>Description : this is forum 3
</td>
<td style="width: 31px; text-align:center;">
<img src="https://i.postimg.cc/ht3j9bt0/chopper-min.png" width="31px">
</td>
<td>
<a href="https://onepiecerp.forumotion.com/f5-forum4">Forum</a><br>Description : this is forum 4
</td>
</tr>
</tbody></table>
See what it looks like on a screenshot:
That second part is the part where usually the Topics, Views and last topics are displayed..
Similar topics
» Multiple Forums?
» Owning Multiple Forums
» How can I add multiple forums to the news widget with invision.
» Help starting multiple forums
» How can I add multiple forums to the news widget? PLEASE HELP!
» Owning Multiple Forums
» How can I add multiple forums to the news widget with invision.
» Help starting multiple forums
» How can I add multiple forums to the news widget? PLEASE HELP!
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum