Basically what I want to do, is exactly the same as this question: Is there are way to make a child DIV's width wider than the parent DIV using CSS?
The only issue is that the Drupal theme I'm using is based off of bootstrap which makes the parent element (col-sm-12
) have a position: relative;
.
I could do the whole :
#my_div_id {
position: absolute;
left: 0;
width: 100%;
}
And remove the position: relative;
from the Bootstrap css definitions of all of the col-sm-*
classes, but would that cause any adverse issues?