- Posts: 15
COMMUNITY FORUM
[SOLVED] help finding code for image size
- Michael Hentrich
-
Topic Author
- Offline
- New Member
Less
More
10 years 9 months ago - 10 years 9 months ago #130648
by Michael Hentrich
[SOLVED] help finding code for image size was created by Michael Hentrich
Hi I am trying to set the css of one of my divs based on the size of the image that is being used (i.e. medium, large, extra-large) as defined per item. I thought the following code would work, but it doesn't. Could anyone point me in the right direction? Thanks.
<?php if($this->item->imageXLarge): echo "XL"; endif; ?>
<?php if($this->item->imageXLarge): echo "XL"; endif; ?>
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 9 months ago #130649
by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: help finding code for image size
$this->item->imageXLarge will return the image.
You need to check the item's params.
will display the params and will help you build the code.
You need to check the item's params.
<?php var_dump($hits->item); ?>
Please Log in or Create an account to join the conversation.
- Michael Hentrich
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 15
10 years 9 months ago #130650
by Michael Hentrich
Replied by Michael Hentrich on topic Re: help finding code for image size
Thank you for your reply. I added that code to my k2 template, but it simply returns "NULL"
Please Log in or Create an account to join the conversation.
- Michael Hentrich
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 15
10 years 9 months ago #130651
by Michael Hentrich
Replied by Michael Hentrich on topic Re: help finding code for image size
<?php var_dump($this); ?>
Nevermind. I got it using the above code. Thanks again!
Nevermind. I got it using the above code. Thanks again!
Please Log in or Create an account to join the conversation.
- Michael Hentrich
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 15
10 years 9 months ago #130652
by Michael Hentrich
Replied by Michael Hentrich on topic Re: help finding code for image size
Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 9 months ago #130653
by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: help finding code for image size
You 're welcom Michael and thank you for sharing.
Please Log in or Create an account to join the conversation.