Footer map in 05 lines
milindras@yahoo... - October 13, 2008 - 12:49
| Project: | footermap: a footer site map |
| Version: | 6.x-1.4 |
| Component: | User interface |
| Category: | support request |
| Priority: | normal |
| Assigned: | mradcliffe |
| Status: | by design |
Jump to:
Description
Hi,
I used this module but the all links was spread out for 05 lines bottom of my page. Its look too big. I meant there is no that much of links to fill 05 line. Is it problem with the Theme I used? How can I correct that?
Thanks
| Attachment | Size |
|---|---|
| untitled.JPG | 89.82 KB |

#1
In the footermap module directory is a sample CSS file called "footermap.css".
Footermap uses footermap DIV class and footermap-item UL class. It also uses the standard ul classes such as 'first' 'last' 'active' so you can style the links how you choose.
Add the respective classes to your theme's style.css. You can change the width and basic properties with
.footermap {
# css goes here
}
#2
#3
Closing, 1 week inactive.
#4
about : "Add the respective classes to your theme's style.css ..."
There is a more elegant way I think : let drupal use footermap.css when it loads the module :
add this lines in footermap.module :
function footermap_init() {drupal_add_css(drupal_get_path('module', 'footermap') .'/footermap.css');
}
drupal will call automatically this function on startup
New update of footermap soon ?