Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

align_right not working - revisited
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: align_right not working - revisited
#32768
align_right not working - revisited 11 Years, 6 Months ago Karma: 2
If you go to this link, http://www.halscrib.com/index.php/web-club/results, you will see in the header, the columns are left-justified for text, and right-justified for non-text data.

But look at the footer row, which contains the same text as the header row. They are not right-justified properly!

When I look at the source code, I would expect it to show properly:

Code:

<thead>
  <tr>
    <th class="ari-tbl-col-0 align_left col_4f4dc29d">Tournament</th>
    <th class="ari-tbl-col-1 align_right col_251bd814">Games</th>
    <th class="ari-tbl-col-2 align_right col_b3e00c14">Game Pts</th>
    <th class="ari-tbl-col-3 align_right col_cdc2db6a">Games Won</th>
    <th class="ari-tbl-col-4 align_right col_50e3b6b1">Net Pts</th>
    <th class="ari-tbl-col-5 align_right col_54bfaf80">+ Pts</th>
    <th class="ari-tbl-col-6 align_right col_08c13134">Movie</th>
  </tr>
</thead>



and

Code:

<tfoot>
  <tr>
    <th class="ari-tbl-col-0 align_left col_4f4dc29d">Tournament</th>
    <th class="ari-tbl-col-1 align_right col_251bd814">Games</th>
    <th class="ari-tbl-col-2 align_right col_b3e00c14">Game Pts</th>
    <th class="ari-tbl-col-3 align_right col_cdc2db6a">Games Won</th>
    <th class="ari-tbl-col-4 align_right col_50e3b6b1">Net Pts</th>
    <th class="ari-tbl-col-5 align_right col_54bfaf80">+ Pts</th>
    <th class="ari-tbl-col-6 align_right col_08c13134">Movie</th>
  </tr>
</tfoot>



Did I mis-interpret something?
The administrator has disabled public write access.
 
#32769
Re:align_right not working - revisited 11 Years, 6 Months ago Karma: 748
Add the following code to "CSS Styles" parameter in module settings:

Code:


{$id}_wrapper TR TH.align_right
{
 text-align: right;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#32770
Re:align_right not working - revisited 11 Years, 6 Months ago Karma: 2
I already have:

Code:

{$id}_wrapper TR TH.align_right DIV {
  font-family: CribOEM8513;
  font-size: large;
  text-align: right;
}



to make the header align properly. Won't these two align_right conflict?
The administrator has disabled public write access.
 
#32771
Re:align_right not working - revisited 11 Years, 6 Months ago Karma: 748
Add also code which we provided.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#32772
Re:align_right not working - revisited 11 Years, 6 Months ago Karma: 2
Thank you.

Is there an issue with IE and ADT?

Take a look at this graphic.
The administrator has disabled public write access.
 
#32774
Re:align_right not working - revisited 11 Years, 6 Months ago Karma: 748
Try to add the following CSS rule:

Code:


{$id}_wrapper TR TH.align_left DIV
{
 text-align: left;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1