Quote:
Originally Posted by azcs bryan
First off, thank you for taking something that required a whole ton of editing, and simplifying it for us "common folk"
I edited the adsafterfirstpost.css to read:
height: 200px;
rather than 260px, because I love the location and placing, however I would like to make it shorter in display. It hasnt reflected any changes tho, and is still displaying the 260px box/container. Am I doing something wrong?
thanks again!
|
In there are three definitions related to the height check it out:
Code:
#innovativeadspan {
width: 100%;
height: 260px;
margin-right: auto;
margin-left: auto;
}
#innovativeadleft {
width: 45%;
height: 260px;
float: left;
margin-left: 15px;
}
#innovativeadright {
width: 45%;
height: 260px;
float: right;
margin-right: 15px;
}
The innovativeadspan is the "Container" then innovativeadleft and right are for those sides respectively. If you change the left or right height to 200 then also change the innovativeadspan as well however the span should control the overall height regardless simply tinker to see the results but the span is the master value per say

.