Skip to content

Instantly share code, notes, and snippets.

@nathansmith
Created May 18, 2011 17:11
Show Gist options
  • Select an option

  • Save nathansmith/979032 to your computer and use it in GitHub Desktop.

Select an option

Save nathansmith/979032 to your computer and use it in GitHub Desktop.
Tame Lithium's Center Tag
<!--
Since Lithium is ghetto and wraps its entire
template in a <center> tag, this is how I am
wrestling back some measure of page control.
-->
</center>
<!-- [Your template code here] -->
<center>
<!--
When the page is rendered, that yields:
<center></center>
[Your template code here]
<center></center>
And, kill off the tag entirely via CSS.
center {
display: none;
}
-->
@soffes
Copy link

soffes commented May 18, 2011

Hilarious. Sounds like some quality stuff :P

@nathansmith
Copy link
Author

Yeah. Definitely "enterprise" :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment