|
|
Re: i dont know how to do it [message #162751 is a reply to message #162716] |
Sun, 11 July 2010 21:56 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
beAst
Messages: 33 Registered: July 2009 Location: Russia
Karma: 0
|
Member |
![5066962](/forum/theme/default/images/icq.png) ![beastkurt](/forum/theme/default/images/skype.png)
|
|
naudefj писал(а) Wed, 07 July 2010 13:24You should be able to make rounded corners by adding 'border-radius' to the appropriate entries in the forum.css.tmpl (forum.css) or template files (STYLE=).
If you want to add cell separators, remove the COLSPAN= and introduce the 'TD' cells.
Best of luck!
I know this, but I get what the picture attached below
thanks for 'td'
[Updated on: Sun, 11 July 2010 21:57] Report message to a moderator
|
|
|
Re: i dont know how to do it [message #162777 is a reply to message #162751] |
Thu, 15 July 2010 11:02 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
Ernesto
![Sweden Sweden](/forum/images/flags/se.png) Messages: 413 Registered: August 2005
Karma: 0
|
Senior Member |
|
|
In forum.css.template either edit entry that (maybe) looks like this:
.PollTable, .ContentTable, .MsgTable, .DialogTable, .PreviewTable, .AnnonTable {
background : #FFFFFF;
border : 0px;
padding : 0px;
margin : 0px;
}
There you can input this, after margin : 0px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius:5px;
Or you can create a new entry that only affects that table like this:
table.ContentTable {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius:5px;
}
Ginnunga Gaming
|
|
|
|