uCoz Community » uCoz Modules » Forum » Forum design and appearance (forum CSS, colors etc.)
Forum design and appearance
august
Posts: 6
Reputation: 0

Message # 1 | 2:54 AM
Making a table in a Forum creating blank space above table.
I tried may ways such as TD to td, enter new line for each td, tr, etc. but it still gets a huge blank above the table
Could any body help?

Thank you very much

Armaros
Posts: 1424

Message # 2 | 1:28 PM
You hitted enter before each new html tag & that's why it creates a huge space above.
Two solutions: 1.All code in one line or 2.Disable Substitute line feeds by the tag <BR>.

Quote (Wrong)
<table>
<tr><td>Text</td><td>Text</td></tr>
<tr><td>Text</td><td>Text</td></tr>
</table>

Quote (Correct)
<table><tr><td>Text</td><td>Text</td></tr><tr><td>Text</td><td>Text</td></tr></table>
NixMaster
Posts: 3
Reputation: 0

Message # 3 | 9:21 PM
When making a thread in my forums, in the typing areas next to Thread name and Thread description, the text shows up black. But I have a dark background, which makes it very hard to see what is being typed there. Is there a way to change the text to white here?
Sunny
Posts: 9296
Reputation: 456

Message # 4 | 10:02 AM
You should edit CSS, you need this: .postNameFl,.postDescrFl
I'm not active on the forum anymore. Please contact other forum staff.
NixMaster
Posts: 3
Reputation: 0

Message # 5 | 3:00 AM
Sorry, I can't seem to figure out how to use that. I know where to find the CSS page, but I'm not sure where to put those codes.

I've attempted to put it to use here: Main » Customize design » Editing templates

Sunny
Posts: 9296
Reputation: 456

Message # 6 | 8:43 AM
NixMaster, Customize Design -> CSS -> find the following line and change the color code (in red) to any color you need:

Quote
.postNameFl,.postDescrFl {border:1px solid #837363;background: #443932;width:400px;color:#A08D79;}

I'm not active on the forum anymore. Please contact other forum staff.
Borce_Macedon
Posts: 15
Reputation: 0

Message # 7 | 11:57 AM
In the forum i want users countries and genders to be showed, can i make that ?
Thanks

Armaros
Posts: 1424

Message # 8 | 3:02 PM
Quote (Borce_Macedon)
In the forum i want users countries and genders to be showed, can i make that ?
Yes.

1. Adding fields and make them obligatory.

CP -> Users -> Module Settings -> Fields of the registration form

-> Mark both fields at: User's sex (non-obligatory mark first from left)
-> Mark both fields at: Country (non-obligatory mark first from left)



2. Placing code of Sex and Country.

CP -> Customize Design -> Forum -> Appearance of entries

If you meant replacing:

Find:

Code
<?if($USER_STATUS$)?><div class="statusBlock">Status: $USER_STATUS$</div><?endif?>

Replace:

Code
<?if($COUNTRY$)?><div>Country: $COUNTRY$</div><?endif?>



If you meant placing: (For example, before group)

Find:

Code
<?if($GROUP_NAME$)?><div class="postUserGroup">Group: $GROUP_NAME$</div><?endif?>

Place above (one line):

Code
<?if($GENDER$)?><div>Gender: $GENDER$</div><?endif?>



How it works?
The "if" parts means, if user didn't set gender/country the lines wont appear. If
code wouldn't contain "if" there would appear a line without answer. Colour can
be changed in Appearance of entries page manually or you can add a div class.
If you're planning to add div class you'll have to edit CSS. It's recommended way.

Have questions, ask.

Borce_Macedon
Posts: 15
Reputation: 0

Message # 9 | 10:35 AM
I cant figure out how to increase the width on the forum sections table, any help on that please ?
Thanks

Armaros
Posts: 1424

Message # 10 | 11:33 AM
Did you read this: http://forum.ucoz.com/forum/9-2441-12613-16-1227182795 ?

CP -> Customize Design -> CSS -> /* Forums Styles */

Find:
.forumNameTd,.forumLastPostTd {padding:2px;background:#0B0B0B;}

Add:
height:100px;

Result: (For your template it will be different)
.forumNameTd,.forumLastPostTd {padding:2px;background:#0B0B0B;height:100px;}

itseeker
Posts: 29
Reputation: 0

Message # 11 | 6:53 AM
Hi all.. hope you all will be fine.

i want to disable the " UNDERLINE " in my forums entries..
Please tell me where is the code to do it.

Sunny
Posts: 9296
Reputation: 456

Message # 12 | 9:03 AM
itseeker, find the following and delete the text in red:

Quote
a.forum:link, a.lastPostUserLink:link, a.forumLastPostLink:link, a.threadAuthorLink:link {text-decoration:underline; color:#CCB49A;}
a.forum:visited, a.lastPostUserLink:visited, a.forumLastPostLink:visited, a.threadAuthorLink:visited {text-decoration:underline; color:#CCB49A;}

I'm not active on the forum anymore. Please contact other forum staff.
itseeker
Posts: 29
Reputation: 0

Message # 13 | 3:17 PM
i try to delete it.. but it didnt work...

then i use NONE... instead of UNDERLINE.

and it work..

THANKS

maximax
Posts: 3
Reputation: 0

Message # 14 | 5:55 PM
I have a problem on my forum.
If i change the collor in my CSS, and then i refresh the site but the collor doesn't change.

I will change the collor from where this text is standing: This forum has 2 threads. 2 threads displayed.
Forum is being viewed by

ScottyBoy
Posts: 16
Reputation: 1

Message # 15 | 8:59 PM
Did you save your changes in CSS?

Are you sure you're changing the right codes?


uCoz Community » uCoz Modules » Forum » Forum design and appearance (forum CSS, colors etc.)
Search: