PDA

View Full Version : Help with forum


crusader142
02-16-2012, 07:54 AM
Hello. I am hoping some vbulletin pros can help me here.


Our site is www.sonsofvalour.org/forums

The first thing is that the forums looks squareish in IE9 but nice and rounded edges in Firefox.

Second is to do with users profiles. The text is white and I do not know how to change it to make it readible.

The third it that I have ranks enabled and I have assigned post values corresponding to higher US military rank badges.

However they dont appear even though the path is correct to their location on the server.



Thanks in advance

crusader142
02-18-2012, 02:32 AM
Bump.

I still have no idea why some of the boxes in users profiles have invisible text.
Google is not really helping me here either.

Anyone have any answers ?

Would be really helping me out. Thanks.

Max Taxable
02-18-2012, 02:37 AM
Hello. I am hoping some vbulletin pros can help me here.


Our site is www.sonsofvalour.org/forums

The first thing is that the forums looks squareish in IE9 but nice and rounded edges in Firefox.

Second is to do with users profiles. The text is white and I do not know how to change it to make it readible.

The third it that I have ranks enabled and I have assigned post values corresponding to higher US military rank badges.

However they dont appear even though the path is correct to their location on the server.



Thanks in advanceIE does not support rounded corners.

crusader142
02-18-2012, 03:24 AM
Ah I see.

Thanks for that.

Im still searching through google results.
Is the issue of white text on white background a fairly common one ?

Max Taxable
02-18-2012, 01:12 PM
Ah I see.


Thanks for that.

Im still searching through google results.
Is the issue of white text on white background a fairly common one ?That's going to be somewhere in the CSS I think. You don't have this issue in the default style, I'm assuming.

crusader142
02-20-2012, 01:03 AM
It is in the default style


http://sonsofvalour.org/forums/member.php?2-Crusader-NZ


All the boxes on the left side are white text on white background.



Cannot find where the CSS / style vars would be to change it.

I have figured out alot in the short time I have been working on vbulletin (new to vbulletin with 4.1.10).

--------------- Added 1329703508 at 1329703508 ---------------

visitor messages are also the same (white on white).

kh99
02-20-2012, 01:20 AM
Looks like the text color for both of those are from the template userprofile.css:

.userprof_content {
background-color: #FAFAFA;
background-repeat: repeat;
color: #FFFFFF;
}


the #FFFFFF is making the text white. I would just change userprofile.css, but I've seen other people add new CSS in additional.css, so maybe that's the right way to do it. (I'm not a CSS expert or anything).

Edit: oh...actually it's a style variable called content_text_color, so I guess the correct thing to do is change it from the Style Variable Editor.

Edit again: ...except that content_text_color is likely used somewhere else, which is probably how it got set to white in the first place. In that case I'm not sure of the "correct" way to fix it.

crusader142
02-20-2012, 01:29 AM
Cool thanks. I will have a crack at it now.


Edited post to help others who may come across this issue.



Fixes for white text on white background in user profiles:


Navigate to userprofiles.css (as kh99 said)




Visitor Messages Fix:

.userprof_content{
color: {vb:raw module_text_color}; <- Replace everthing in bold to: #333333
background-color: {vb:raw module_background_color};
background-image: {vb:raw module_background_image};
background-repeat: {vb:raw module_background_repeat};





Join Date / Last Activity & Recent Visitors Fix


#sidebar_container .userprof_content .blockrow{
color: {vb:raw content_text_color}; <- Replace everthing in bold to: #333333
background-color: {vb:raw content_background_color};
<vb:if condition="$content_background_image != ''">
background-image: {vb:raw content_background_image};
background-repeat: {vb:raw content_background_repeat};
</vb:if>
border-color: {vb:raw content_border};



Still looking for the other issue.

--------------- Added 1329714130 at 1329714130 ---------------

Can an admin please set this as resolved.

Cheers for the help guys.