Created
September 25, 2012 20:54
-
-
Save leoj3n/3784373 to your computer and use it in GitHub Desktop.
An answer to the question located at: https://groups.google.com/d/topic/roots-theme/j5zuiGoX2RI/discussion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row" style="color:#f0f0f0;"> | |
<div id="foo" class="span4 bar"> | |
<div class="apply-bg-here"> | |
<h3>Box 1 Title</h3> | |
<div class="textwidget"> | |
Put a lot of info here like the font should be #f0f0f0 and the background should be #232728 and that lipsum cume laude is greek for taking up space. | |
</div> | |
</div> | |
</div> <!-- END SPAN 4 --> | |
<div class="span4 bar"> | |
<h3>Box 2</h3> | |
<div class="textwidget"> | |
Put a lot of info here like the font should be #f0f0f0 and the background should be #232728 and that lipsum cume laude is greek for taking up space. | |
</div> | |
</div> <!-- END SPAN 4 --> | |
<div class="span4 bar"> | |
<h3>BOX 3</h3> | |
<div class="textwidget"> | |
Put a lot of info here like the font should be #f0f0f0 and the background should be #232728 and that lipsum cume laude is greek for taking up space. | |
</div> | |
</div> <!-- END SPAN 4 --> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.span4 { | |
padding-left:30px; | |
float:left; | |
width:300px; | |
} | |
div.span4, | |
#foo div.apply-bg-here { | |
background:#232728; | |
} | |
#foo { | |
background:transparent; | |
} | |
div.bar h3 { | |
margin-top:0; | |
padding-top:20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment