is my time to try to help..
following the instructions of Cypriano
some things are left undone, here's my solution:
for the version:
Version 3.3.04
# 1) on the select index should be starting in line 23, thus:
- Code: Select all
<select name="id_item" class="select" onchange="this.form.submit();">
<option value="0"> Show All </ option>
<?php sel_list_items php echo ($ _REQUEST ["id_item"]);?>
</ select>
# 2) to fix the problem in CSS you need to know when you are viewing all the items or not:
at index:
replace:
- Code: Select all
<div id="the_months">
<? php echo $ calendar_months;?>
</ div>
TO:
- Code: Select all
<php
if ($ _REQUEST ["id_item"] == 0) {
?>
<div id="the_months" class="allitems">
<? php echo $ calendar_months;?>
</ div>
<php
else {}
?>
<div id="the_months">
<? php echo $ calendar_months;?>
</ div>
<? php}?>
.....
doing so when you have selected SELECT ALL the class = "AllItems" will be applied and then the CSS will work only in that case!
....
everything worked PERFECTLY! updates I do notice here!
THANK YOU FOR EVERYTHING!
hugs,