Title: leinster's Replies | WordPress.org

---

# leinster

  [  ](https://wordpress.org/support/users/leinster/)

 *   [Profile](https://wordpress.org/support/users/leinster/)
 *   [Topics Started](https://wordpress.org/support/users/leinster/topics/)
 *   [Replies Created](https://wordpress.org/support/users/leinster/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/leinster/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/leinster/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/leinster/engagements/)
 *   [Favorites](https://wordpress.org/support/users/leinster/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [news blog link redirects to another page](https://wordpress.org/support/topic/news-blog-link-redirects-to-another-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/news-blog-link-redirects-to-another-page/#post-4596319)
 * Thanks for your help esmi,
 * Somehow one of the plugins updated the news blog link with another. Don’t know
   how but solved it by recreating news blog page and linked to all posts again.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [news blog link redirects to another page](https://wordpress.org/support/topic/news-blog-link-redirects-to-another-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/news-blog-link-redirects-to-another-page/#post-4596153)
 * Thanks for your quick reply. Checked and clean. Also checked page which is being
   redirected. Says clean and displaying 301 redirect to another page of website.
   Wondering is therea way to trace where the redirect is written into the code 
   and what file?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Warning: Cannot modify header information](https://wordpress.org/support/topic/warning-cannot-modify-header-information-90/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/warning-cannot-modify-header-information-90/#post-3070743)
 * In answering my own question after trying out many suggestions found on the web.
 * I had changed the category.php file a while ago to remove category archive text
   in the web page heading. I figured this may have had an effect.
 * Solution
 * Add `<?php ob_start(); ?>` to very top of file.
 * And add `<?php ob_end_flush(); ?>` to very end of file
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [adding '|' between Login Logout url](https://wordpress.org/support/topic/adding-between-login-logout-url/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/adding-between-login-logout-url/#post-3058827)
 * Thank you very much. Worked a treat.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Login added to header](https://wordpress.org/support/topic/login-added-to-header/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/login-added-to-header/#post-3042068)
 * Login Link locked out in Firefox. Trawled examples of css.
    Any idea whats wrong?
 * style.css
 *     ```
       /* Header
       ---------------------------------------- */
       #header {
       	height:205px;
       	position:relative;
       	z-index:9999;
       }
   
       /* Login Style */
       .header-login
       {position: absolute;
       top: 50px;
       right: 180px;
       Z-index:1;
       }
       /* End of Login Style */
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Aligning field boxes on home page](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/#post-3036588)
 * Hi Esme,
 * I have spent most of this afternoon trying to understand what is wrong. I’m not
   a coder but I’ve gone through many other options to try get it.
 * If I move the </div> tag to the top line then I lose the positioning.
 * How does one apply the positioning style div to the form so that it wont lock
   a user out.
 * I have tried this but it does not work
 *     ```
       <?php wp_login_form( $args ); ?>
       <div id="loginform">
       <?php $args = array(
               'echo' => true,
               'redirect' => site_url( $_SERVER['REQUEST_URI'] ),
               'form_id' => 'loginform',
               'label_username' => __( 'Username' ),
               'label_password' => __( 'Password' ),
               'label_remember' => __( 'Remember Me' ),
               'label_log_in' => __( 'Log In' ),
               'id_username' => 'user_login',
               'id_password' => 'user_pass',
               'id_remember' => 'rememberme',
               'id_submit' => 'wp-submit',
               'remember' => true,
               'value_username' => NULL,
               'value_remember' => false ); ?></div>
       #loginform{
       position: absolute
       top: 10px
       left:900px
       width:724px
       height: 500px
       }
       ```
   
 * Thanks,
 * L
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Aligning field boxes on home page](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/#post-3036578)
 * Thanks for you help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Aligning field boxes on home page](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/#post-3036498)
 * The login fields wont let me insert the cursor to add text.
 * Code
 *     ```
       <div style="position: absolute; left: 800px; 0: 100px;">
       <?php wp_login_form(); ?>
       ```
   
 * I replaced it with this but made no difference
 *     ```
       <div style="position: absolute; left: 800px; 0: 100px;">
       <?php wp_login_form($args); ?>
       <?php $args = array(
               'echo' => true,
               'redirect' => site_url( $_SERVER['REQUEST_URI'] ),
               'form_id' => 'loginform',
               'label_username' => __( 'Username' ),
               'label_password' => __( 'Password' ),
               'label_remember' => __( 'Remember Me' ),
               'label_log_in' => __( 'Log In' ),
               'id_username' => 'user_login',
               'id_password' => 'user_pass',
               'id_remember' => 'rememberme',
               'id_submit' => 'wp-submit',
               'remember' => true,
               'value_username' => NULL,
               'value_remember' => false ); ?>
       </div>
       ```
   
 * _[Moderator Note: Please post code or markup snippets between backticks or use
   the code button. As it stands, your code may now have been permanently damaged/
   corrupted by the forum’s parser.]_
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Aligning field boxes on home page](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/)
 *  Thread Starter [leinster](https://wordpress.org/support/users/leinster/)
 * (@leinster)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/aligning-filed-boxes-on-home-page/#post-3036491)
 * Thanks,
 * I replaced the code in the header.php file with your suggestion and installed
   the Firebug add-on to firefox.
 * Would you be able explain how I can position the login box. I have firebug open
   with css.
 * Excuse my ignorance.
 * L

Viewing 9 replies - 1 through 9 (of 9 total)