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?

Insert another column
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Insert another column
#30364
Re:Insert another column 11 Years, 11 Months ago Karma: 0
I want create other column and in this column I want to insert image
I try to use this SQL string
Code:


SELECT  
  (@curRank := @curRank + 1) AS Rank,
  id,  title, LOAD_FILE ('http://mysite.com/site/save.gif') as izob
FROM  #__content, (SELECT @curRank := 0) r
WHERE  catid =16 AND state=1
ORDER BY id DESC

The administrator has disabled public write access.
 
#30366
Re:Insert another column 11 Years, 11 Months ago Karma: 0
Thank You very much I fixed my problem that:

I use this SQL string
Code:


SELECT  
  (@curRank := @curRank + 1) AS Rank,
  id,  title, 'some string' as izob
FROM  #__content, (SELECT @curRank := 0) r
WHERE  catid =16 AND state=1
ORDER BY id DESC



and in column settings --> Fotmat write this

Code:


<p><a href="index.php?option=com_content&view=article&id={$columns:id}">{$value}<img src="/site/save.gif" alt="some_text"/></a></p>




but now have another "problem" how to align picture?
Last Edit: 2012/08/05 19:30 By ivo75.
The administrator has disabled public write access.
 
#30371
Re:Insert another column 11 Years, 11 Months ago Karma: 748
Could you provide a link to a page where we can see the table?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#30374
Re:Insert another column 11 Years, 11 Months ago Karma: 0
Here is my table .......

I talk to vertical align in picture from last column
Last Edit: 2012/10/08 17:53 By ivo75.
The administrator has disabled public write access.
 
#30377
Re:Insert another column 11 Years, 11 Months ago Karma: 0
my problem is resolved. I use this

TABLE#{$id1} TD
{
border-right: 1px solid #4297D7;
vertical-align:middle;
}
TABLE#{$id1} TD
{
border-left: 1px solid #4297D7;
vertical-align:middle;
}

and now pictures is align vertical. Thanks
The administrator has disabled public write access.
 
Go to topPage: 12