Advertisement:

Author Topic: [Solved] Twitter theme allignment issue  (Read 3022 times)

adsjapan

  • Newbie
  • *
  • Posts: 31
[Solved] Twitter theme allignment issue
« on: April 11, 2012, 06:47:30 pm »
Am facing the allignment issue in Mozilla Firefox.
I am using the twitter theme. Please check the attachment, the 'My Account' tab is not alligned properly.
Am testing in Mozilla 11.0 version.

Probably a duplicate of the same issue here,
http://forums.osclass.org/themes/twitter-theme-1-2-1/

But I can see no solution in this thread. Have anyone found a solution for this issue.
« Last Edit: April 14, 2012, 06:58:51 am by adsjapan »

krzysiekmat

  • Newbie
  • *
  • Posts: 2
Re: Twitter theme allignment issue
« Reply #1 on: April 13, 2012, 07:14:07 pm »
Hello

Here the solution

files to change:

user-profile.php
user-change_password.php
user-change_email.php

lines   <legend>-----------------------------------------------------------</legend>  added after   

<?php twitter_show_flash_message() ; ?>


Please Juan Ramón

My English is poor
« Last Edit: April 19, 2012, 02:31:26 am by krzysiekmat »

adsjapan

  • Newbie
  • *
  • Posts: 31
Re: Twitter theme allignment issue
« Reply #2 on: April 14, 2012, 06:01:40 am »
Dear krzysiekmat
Thanks for the solution. It worked perfectly.
This forum rocks  8)

Juan Ramón

  • Osclass Developer
  • Hero Member
  • *****
  • Posts: 2382
Re: [Solved] Twitter theme allignment issue
« Reply #3 on: April 17, 2012, 05:57:38 pm »
Hello
There is no for which :)
It may still be useful to someone

Can you specify which lines have you changed?

adsjapan

  • Newbie
  • *
  • Posts: 31
Re: [Solved] Twitter theme allignment issue
« Reply #4 on: April 20, 2012, 08:51:47 am »
The following is the Change I did based on krzysiekmat solution.

To solve this issue you need to change three files user-change_password.php, user-profile.php and user-change_email.php. For example in twitter_bootstrap\user-profile.php. The change is at Line No. 19

Before change
Code: [Select]
<fieldset>                           
    <legend><?php _e('Change your e-mail''twitter_bootstrap') ; ?></legend>
    <div class="clearfix">

Move the <legend> tag to the Line No.15 Just below '<?php twitter_show_flash_message() ; ?>' tag.

After change
Code: [Select]
<?php twitter_user_menu() ; ?>                   
    <?php twitter_show_flash_message() ; ?>                   
    <legend><?php _e('Change your e-mail''twitter_bootstrap') ; ?></legend>
   

Do the same changes for user-change_password.php and user-change_email.php files. Note that the line numbers may change in these files but the solution is same. Move the <legend> tag.

Message me if this is not working.   

anarosa

  • Jr. Member
  • **
  • Posts: 57
Re: Twitter theme allignment issue
« Reply #5 on: December 27, 2012, 05:51:39 pm »
Hello

Here the solution

files to change:

user-profile.php
user-change_password.php
user-change_email.php

lines   <legend>-----------------------------------------------------------</legend>  added after   

<?php twitter_show_flash_message() ; ?>


thanks, its working fine in twitter 1.2.4 too

kanum

  • Newbie
  • *
  • Posts: 20
Re: [Solved] Twitter theme allignment issue
« Reply #6 on: January 26, 2013, 10:48:07 pm »
Exactly what I need :)Thanks for fix