Hello, I'm working on a site w/ the Zero Point theme, and have hit a wall with something usually pretty simple. I have made an additional footer menu, and placed it in the "Below" region, as you can see here:
http://eztek.sundaysenergy.org/
Now I want to center the 2 menu items horizontally and have them be on the same line - as usual for websites. But with this theme it doesn't work using the standard method:
#block-menu-menu-footer div.content ul.menu li {
display:inline;
list-style-type: none;
text-align: center;
}
It removes the bullets, and places the items on the same line, but doesn't center them. The only way I could make it all work was to do:
#block-menu-menu-footer {
display: inline-table;
}
div.content ul.menu li {
display: inline;
}
But as the 2nd part is not specific to the footer, it also affected text in the product catalog ("Shop Now") block. I couldn't find a way to define a div just for that footer block, and wasn't sure if that was the best way to proceed anyway.... I don't know enough PHP to attempt something there, but basically just want to find a solution best suited to the Zero Point theme.
Thanks for your assistance,
Jim
Comments
Comment #1
mlines commentedHave you seen this discussion?
http://drupal.org/node/499284
...especially near the bottom...
Comment #2
jimmb commentedThanks for pointing that out Michael! I did scan it before, but didn't think it really applied. But I took another look - and got it working after adding the links manually in a block.
Cheers,
Jim
Comment #3
florian commented