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

CommentFileSizeAuthor
untitled.JPG89.82 KBmilindras@yahoo.co.uk

Comments

mradcliffe’s picture

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
}

mradcliffe’s picture

Assigned: Unassigned » mradcliffe
Status: Active » Postponed (maintainer needs more info)
mradcliffe’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)

Closing, 1 week inactive.

jahjah92’s picture

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 ?