After logging out, the background of my page wrapper expands to cover 100% of the page. However, once you log back in, it shrinks and adjusts to the width of the member bar...
TO TEST USER ACCOUNT BELOW:
USERNAME: TEST PASSWORD: TEST123
HTML FOR LOGGED OUT...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Rest of the HTML code for logged out state -->
HTML FOR LOGGED IN...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Rest of the HTML code for logged in state -->
BOTH USE THE SAME CSS FILE...
body{
/* CSS styles shared by both states */
}
/* Additional CSS styles specific to certain elements based on login state */
I DOUBT YOU WILL NEED THE PHP BUT HERE IT IS FOR LOGGED OUT
<!-- PHP code removed for conciseness -->
PHP FOR LOGGED IN
<!-- PHP code removed for conciseness -->