Keyword

[SOLVED] how to create striped style tag lists

  • Nicole
  • Nicole's Avatar Topic Author
  • Offline
  • New Member
More
11 years 2 months ago #115583 by Nicole
I've achieved a stripe effect for my category item lists using the k2.css with .odd and .even styles and placing <?php echo ($key%2) ? "odd" : "even"; ?> in my category.php file. See this example here - ryangroupstl.com/scottprop/index.php?option=com_k2&view=itemlist&task=category&id=24:bellerive&Itemid=228

I'm having a ton of trouble figuring out how to apply this same styling to my tag lists. Essentially I have a menu created from tags. When my tag items display in a list I need every other one to have a background color. I've tried applying <?php echo ($key%2) ? "odd" : "even"; ?> to the tag.php file after <div class="tagItemView"> with no luck. It seems to only pick up the "even" value in the list.

I need to apply the styling to this page - ryangroupstl.com/scottprop/index.php?option=com_k2&view=itemlist&layout=tag&tag=less%20than%202,000%20sq%20ft&task=tag&Itemid=253


Any suggestions would greatly be appreciated!

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 2 months ago #115584 by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: how to create striped style tag lists
Hello Nicole in your tag.php file locate the following block of code
<?php foreach($this->items as $item): ?>

and change it to
<?php foreach($this->items as $key=>$item): ?>

Now you can use the class="<?php echo ($key%2) ? "odd" : "even"; ?>" snippet on your tagItemView <div>

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Nicole
  • Nicole's Avatar Topic Author
  • Offline
  • New Member
More
11 years 2 months ago #115585 by Nicole
Replied by Nicole on topic Re: how to create striped style tag lists
Thank you so much for you awesome timely response. That fixed my headache!

Awesome support.

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum