By jsmorevis on
I need the links/output for all 3 modules to show up on the same line on my pages. I would love to know how to put them all in the same template variable ($links), but for now, that's not necessary. CSS might help solve the issue, but I've tried several things and can't get them to show up in the same line.
Thanks for your help!
Comments
would using the share module
would using the share module help?
I guess the requirement
I guess the requirement would be that links should be in the same < div >
Did anyone ever help you on this?
I want to do the exact same thing, and find service_links to be pretty arbitrary in how it displays.
I have managed to create a block that has email this page and print this page links as images, using the Forward and Printer-friendly modules.
But I can't figure out how to get the service links to show in a block.
IF I insert
<?php print $service_links ?>into page.tpl.php I can get them to show, but having trouble in a block.
Hmmm.
No one's helped me with this
No one's helped me with this yet... I have a few more things I can try... When I find something that works, I'll post it here.
to solve that problem
to do that, apply the following css on the div that contains the service links
#service_links_div li {
display: inline;
padding: 0px;
margin: 0px;
}
don't forget the "li" after the name of the div
hope that help