WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1multi forums in one Empty multi forums in one Fri May 07, 2010 6:53 pm

50Cent


Registered Member
Registered Member
How can i make it straight? instead of 2 top and 2 bottom?

Here is my code. Can anyone help me see of i am wrong or correct? As i put it into the description everything was messed up. But on the editor it was straight.
Code:

<table width="100%" border="0" cellspacing="5" cellpadding="5">
  <tr>
    <td width="31"><a href="http://www.chattyden.co.cc/forum1-f24/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum2-f25/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum3-f29/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum4-f30/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
  </tr>
 

One more thing, how can i put my text just right above the image? I use this code.
Code:
<center><p><font face="Verdana" size="2">Resources</font></p></center>

2multi forums in one Empty Re: multi forums in one Fri May 07, 2010 7:51 pm

ankillien

ankillien
Administrator
Administrator
Hi!

I just noticed that you forgot to put the closing table tag </table> at the end.
The code should look like this...

Code:
<table width="100%" border="0" cellspacing="5" cellpadding="5">
  <tr>
    <td width="31"><a href="http://www.chattyden.co.cc/forum1-f24/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum2-f25/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum3-f29/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
    <td width="31"><a href="http://www.chattyden.co.cc/forum4-f30/"><img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png"/></a></td>
  </tr>
</table>

I don't understand the question about the text. Can you explain more please?

3multi forums in one Empty Re: multi forums in one Fri May 07, 2010 8:06 pm

50Cent


Registered Member
Registered Member
If you look at ego-one.com, the index page. You will see the text above the images. How do i do that?

4multi forums in one Empty Re: multi forums in one Fri May 07, 2010 9:16 pm

ankillien

ankillien
Administrator
Administrator
Try this code please...

Code:
<table width="100%" border="0" cellpadding="5" cellspacing="5">
<tr>
   
<td width="31"><a href="http://www.chattyden.co.cc/forum1-f24/">Some Title<br />
<img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png" /></a></td>
   
<td width="31"><a href="http://www.chattyden.co.cc/forum2-f25/">Some Title<br />
<img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png" /></a></td>
   
<td width="31"><a href="http://www.chattyden.co.cc/forum3-f29/">Some Title<br />
<img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png" /></a></td>
   
<td width="31"><a href="http://www.chattyden.co.cc/forum4-f30/">Some Title<br />
<img src="http://i11.servimg.com/u/f11/11/91/65/81/gd10.png" /></a></td>
  </tr>
</table>

5multi forums in one Empty Re: multi forums in one Fri May 07, 2010 9:38 pm

Joel

Joel
Registered Member
Registered Member
erm, anikillien, i think this is totally related to Forumotion.

http://www.advertisehotspot.info/

6multi forums in one Empty Re: multi forums in one Fri May 07, 2010 9:45 pm

ankillien

ankillien
Administrator
Administrator
Joel wrote:erm, anikillien, i think this is totally related to Forumotion.

Yes, but, after all, it is about coding so we can help on this.
We don't answer the questions related to forumotion admin panel. But if the issue is about coding, we can help Very Happy

7multi forums in one Empty Re: multi forums in one Fri May 07, 2010 9:46 pm

Joel

Joel
Registered Member
Registered Member
i see. Okay, sorry for that multi forums in one Icon_wink

http://www.advertisehotspot.info/

8multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:01 pm

50Cent


Registered Member
Registered Member
Ok i tried the code and it works. But do you have anyway to make the text center with the image? Link to my forum: www.chattyden.co.cc <Take a look

9multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:04 pm

ankillien

ankillien
Administrator
Administrator
You just need to add align="center" to the <tr> tag, like this...

Code:
<tr align="center">

10multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:08 pm

50Cent


Registered Member
Registered Member
It does not work. I added into the start of my code and i hit submit it does center the text.

11multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:22 pm

ankillien

ankillien
Administrator
Administrator
It work mate. I tested it on your forum Razz
<tr> tag is already there in your code. Find it and then add the align="center" to it.

After you add it, your <tr> tag will look like this...
<tr align="center">

You don't need to add another <tr> tag to your code, it is already there and don't add align="center" to the closing tag, i.e. </tr>

12multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:44 pm

50Cent


Registered Member
Registered Member
Thanks ankillien!

13multi forums in one Empty Re: multi forums in one Fri May 07, 2010 10:47 pm

ankillien

ankillien
Administrator
Administrator
Glad I could help Very Happy

Solved |Locked

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum