MyBB Community Forums

Full Version: I need help with my new theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello



I created theme for my forum

now I have a problem

how can I add line btween work

for example look at this :

[Image: linesxo.png]

there is no line bitween

ICQ Number:AIM
Screen Name:
Yahoo ID:
MSN ID:

So my question is how can I add lines bitween them ?
Add a background color to the table and add cellspacing of 1 to it.
(2011-06-03, 07:50 PM)Aries-Belgium Wrote: [ -> ]Add a background color to the table and add cellspacing of 1 to it.

To which table and where ?
In the member_profile template locate the table where that information is being displayed. Make sure that table has these options:
class="tborder" cellspacing="1" cellpadding="4"
Sorry I could Not fix it
Can you explain more
Can you post the url to your forum?
You might also need to give a test account as guests can't access user profiles.
You can check now
In your global.css of your theme, search for .tborder. Make the background darker or lighter depending on your preferences.
.tborder {
background: #282828;
width: 100%;
margin: auto auto;
border: 1px solid black;
}
to
.tborder {
background: #000000;
width: 100%;
margin: auto auto;
border: 1px solid black;
}
Pages: 1 2