[class*="span"] {
1. float: left;
2. margin-left: 20px;
}
This is a major part of the grid system.
You might run into problems later if you change it,
but because you are using an ID you could override it with:
#menuderecha {
margin-left: 0px;
}
--
Phil Doughty
*T*: +971 50 8879936
On 7 February 2012 04:25, Jose M <[email protected]> wrote:
> I have the following code
>
> <div class="row" id="wrapcontenido">
> <div class="span9 columns" id="contenido">
> Content
> </div>
>
> <div class="span3 columns" id="menuderecha">
> Menu
> </div>
> </div>
>
> Displays 20 pixels of distance between the columns, but I want them
> together, how I can remove that space?
> any css class?
>
> Thanks!