realfam Posted January 13, 2009 Share Posted January 13, 2009 I have a script on my main page that lets you log in and sign up. I have the form styled the way I want it to look and it functions properly. Once you log in the formatting of that area is not the same and I can not get it to be centered and clean like it is before you log in. Can anyone help me out? I can put code on here if needed. www.ex-brief.com HERE IS A FAKE USER ALREADY SET UP: Username: help Password: help Link to comment https://forums.phpfreaks.com/topic/140697-formatting-issue/ Share on other sites More sharing options...
kenrbnsn Posted January 13, 2009 Share Posted January 13, 2009 We need to see you code. Ken Link to comment https://forums.phpfreaks.com/topic/140697-formatting-issue/#findComment-736384 Share on other sites More sharing options...
realfam Posted January 13, 2009 Author Share Posted January 13, 2009 Here it is: <div id="sidebar"> <ul> <?php if ( !is_user_logged_in() ) : ?> <br /><br /><br /><div style="text-align: center;"> <form name="login-form" id="login-form" action="<?php get_option('home') ?>/wp-login.php" method="post"><input size="15" name="log" id="user_login" value="Username" onfocus="if (this.value == 'Username') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Username';}"><input size="15" name="pwd" id="user_pass" class="input" value="" type="password"> <!--<input name="rememberme" type="checkbox" id="rememberme" value="forever" />--> <p><input name="wp-submit" id="wp-submit" value="<?php _e( 'Log In', 'buddypress' ) ?>" type="submit"><input name="redirect_to" value="http://<?php echo $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ?>" type="hidden"><input name="testcookie" value="1" type="hidden"> </p> </form> </div> </ul> <p style="text-align: center;"><a href="/wp-signup.php?action=lostpassword">Sign Up</a> | <a href="/wp-login.php?action=lostpassword">Lost Password?</a><br> <?php else : ?> <div id="logout-link"> <?php bp_loggedinuser_avatar_thumbnail( 20, 20 ) ?> <?php bp_loggedinuser_link() ?> <?php if ( function_exists('wp_logout_url') ) : ?> / <a href="<?php echo wp_logout_url(site_url()) ?>" alt="<?php _e( 'Log Out', 'buddypress' ) ?>"><?php _e( 'Log Out', 'buddypress' ) ?></a> <?php else : ?> <br><A href="/wp-admin/">Dashboard</a> <br><a href="/wp-admin/post-new.php">Profile</a> <br> <a href="<?php echo site_url() . '/wp-login.php?action=logout&redirect_to=' . site_url() ?>"><?php _e( 'Log Out', 'buddypress' ) ?></a> <?php endif; ?> <br /><br /><br /></div> <?php endif; ?> <br /><br /> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <li> <?php include (TEMPLATEPATH . '/searchform.php'); ?> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <?php if ( is_404() || is_category() || is_day() || is_month() || is_year() || is_search() || is_paged() ) { ?> <li> <?php /* If this is a 404 page */ if (is_404()) { ?> <?php /* If this is a category archive */ } elseif (is_category()) { ?> <p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p> <?php /* If this is a yearly archive */ } elseif (is_day()) { ?> <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for the day <?php the_time('l, F jS, Y'); ?>.</p> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for <?php the_time('F, Y'); ?>.</p> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for the year <?php the_time('Y'); ?>.</p> <?php /* If this is a monthly archive */ } elseif (is_search()) { ?> <p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p> <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives.</p> <?php } ?> </li> <?php }?> <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> <li><h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <li><h2>Meta</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php $current_site = get_current_site(); ?> <li><a href="http://<?php echo $current_site->domain . $current_site->path ?>wp-signup.php" title="Create a new blog">New Blog</a></li> <li><a href="http://<?php echo $current_site->domain . $current_site->path ?>" title="<?php echo $current_site->site_name ?>"><?php echo $current_site->site_name ?></a></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> <?php endif; ?> </ul> </div> (edited to add tags) Link to comment https://forums.phpfreaks.com/topic/140697-formatting-issue/#findComment-736387 Share on other sites More sharing options...
realfam Posted January 14, 2009 Author Share Posted January 14, 2009 Anyone have any ideas? Link to comment https://forums.phpfreaks.com/topic/140697-formatting-issue/#findComment-737020 Share on other sites More sharing options...
realfam Posted January 15, 2009 Author Share Posted January 15, 2009 wow, no replies. this sucks. Guess I am on my own. thanks Link to comment https://forums.phpfreaks.com/topic/140697-formatting-issue/#findComment-737615 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.