Posts Tagged ‘cms’
With the drive of a starving coyote I scoured the internet, searching for a means of removing the drop down menu from the otherwise fabulous Dolphin CMS by Boonex. And with the luck of Wile E. Coyote, I failed miserably. Realizing that if it can’t be found on Google then it doesn’t exist, I knew that it must be created. So began my foray.
One method I’ve found for altogether removing the dreaded drop down menu (which is so eager to be partially hidden by flash swf animations) is to edit the general.css file which resides within the /templates folder structure. In the default template, this file is /templates/tmpl_uni/css/general.css. Replacing the tmpl_uni name with the name of the current template should suffice to find it.
To remove, or hide, the drop down menu, simply find the line in general.css which looks something like this:
.subMenu { background-image:url(../images/h_menu_bg.png);
And change it to something like this:
.subMenu { visibility:hidden; /*background-image:url(../images/h_menu_bg.png);*/
Really, all that is needed is the visibility:hidden; but the /* and */ are used to comment out the loading of the drop down menu’s background image so that visitor’s browsers don’t waste time and energy downloading an image that won’t be used.
For ease of use, I herein offer an altered general.css file from the default tmpl_uni template.
File: general.css
[EDIT: November 9, 2008]
WARNING: Over time I came to learn that the drop-down menu is very much needed for many of the basic features for Dolphin. Though there are workarounds, it’s far less troublesome to just keep the drop-down menu as it is. I’ll be working on a new post today detailing the simple method of having Flash swf files blend with the HTML elements on the page, so that the drop-down menu isn’t hidden behind it.