PDA

View Full Version : Social Group Page


Winterworks
08-14-2009, 12:48 PM
<a href="http://community.zoovix.com/group.php" target="_blank">http://community.zoovix.com/group.php</a>

Why is the whole page messing up like that? The white just stops.

Dismounted
08-14-2009, 12:51 PM
Please provide a test login.

Winterworks
08-14-2009, 02:43 PM
Username: vborg
Password: password

Please check it out and tell me what's wrong with it.

Lynne
08-14-2009, 03:06 PM
Take a look at what you have in your css, this isn't going to work:
.social_group .vbmenu_control {
text-align: left;
float: right;
background: none;
padding: 6px 0px;
margin: rightpx;
}
OR
#discussion_moderation, .discussion_tools {
float: right;
text-align: left;
clear: right;
white-spcae: nowrap;
}

But, using firebug shows me you didn't close the div for your navbar/navbits area (navbar?).

Winterworks
08-14-2009, 04:04 PM
So how would I fix it?

Lynne
08-14-2009, 05:53 PM
You need to use an html validator to get the page to validate. Right now, if you look at your source code, you've got some weird things going on. I mean, look at the bottom of the page source... you have a form started and never ended:
<form action="index.php" method="get" style="clear:left">
What's that supposed to do?
And what about this?
<table align="center" border="0" width="900" cellpadding="0" cellspacing="0">
</table>and this:
<table border="0" cellpadding="0" cellspacing="0" align="left" style="background-image: url(http://community.zoovix.com/images/evid_green/gradients/nav-bg.png); repeat: repeat-x;" height="50">

&nbsp;
</table>
What's are those for? It's improper html and things like that will mess up your page.

I also recommend to anyone working on a style, to get the firebug add-on for firefox. It makes it much easier to Inspect your pages and see what is going on.