ox.team.. Your solution is simple and works just as you stated it would..
ox.team.. Your solution is simple and works just as you stated it would..
Wanted to add this tidbit.. I ended up using this page with ox.teams solution. The only issue was I could not figure out where to get rid of or modify the text that show in the categories heading (it displays "Home")
So I added this to my style sheet:
I set the text color the same as my "mainWrapper" background color so that the text would "disappear", and then I set the font size super tiny so that it inteferes very minorly with the layout of the page.Code:#indexCategoriesHeading { font-size: .1em; color: #383E44; }
Not elegant.. but it did the job.. **sigh**
You could use: display:none
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
You are using the same color with the background to make it look like it's not there. But instead of that, you could use
#indexCategoriesHeading {
display:none;
}
This tells the browser NOT to display that id
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me