Hi.
Does anybody know if there is a way to have the ads categories 'closed' or hidden by default on visit to the ads homepage?
Or does anybody have code for this to happen?
My categories are quite large and would prefer them hidden as default.
Regards Chris
|
Anybody help with this?
Chris
|
I would like to know this too....Thanks
M
|
Somebody must have some idea how to do this?
Is anyone there? LOL
|
Will hide all subcats on Ads Home, this will happen on Categories page also, since it use the same function and css.
open file templates/base/css/categories.css
find this code
.quick_links_elink_lcont { width:100%; background-color:#F2F2FF; border-top:1px solid #DADADA; }
add this code:
display: none;
modified code:
.quick_links_elink_lcont { width:100%; background-color:#F2F2FF; border-top:1px solid #DADADA; display: none; }
|
At work presntly, will try when I get home.
Thanks so much
Chris
|
I added the suggested code to my custom template categories.css and it worked a treat!
Many thanks!
Chris
|
|
How about hiding the Ads details like the time the ad was posted? It shows on my index page and I want to remove it. Do you know how to do it?
See image..
Sometimes communicating your problem and putting it out there is enough to solve it |
How about hiding the Ads details like the time the ad was posted? It shows on my index page and I want to remove it. Do you know how to do it?
See image..
open file: modules/boonex/ads/templates/tmpl_uni/css/ads.css
add this code to it
.ads_When { display: none; }
|
Thanks but it didn't work. I cleared chache and its still there.
How about hiding the Ads details like the time the ad was posted? It shows on my index page and I want to remove it. Do you know how to do it?
See image..
open file: modules/boonex/ads/templates/tmpl_uni/css/ads.css
add this code to it
.ads_When { display: none; }
Sometimes communicating your problem and putting it out there is enough to solve it |
it work ok if you use UNI template, if you use another template or ads module it may be different... |
Ohh I see, yes I use one of Gorpus templates.
Ok thank you.
it work ok if you use UNI template, if you use another template or ads module it may be different...
Sometimes communicating your problem and putting it out there is enough to solve it |