scrupul0us
10-02-2007, 12:15 PM
lets say i have a setup like this:
<div class="main_layout_right_tabs">
<img src="someimage" /><?php somephp; ?>
</div>
and in my css:
.main_layout_right_tabs {
width:20px; height: 85px;
line-height: 85px; vertical-align:center;
}
now... i only want THAT container to be affected by the style and NOTHING underneath it... how do i accomplish that?
im having an issue where an included script (using php) is taking on that styling as well in any of its divs and its screwing things up
anyway to limit that styling to just the parent div container?
thanks
<div class="main_layout_right_tabs">
<img src="someimage" /><?php somephp; ?>
</div>
and in my css:
.main_layout_right_tabs {
width:20px; height: 85px;
line-height: 85px; vertical-align:center;
}
now... i only want THAT container to be affected by the style and NOTHING underneath it... how do i accomplish that?
im having an issue where an included script (using php) is taking on that styling as well in any of its divs and its screwing things up
anyway to limit that styling to just the parent div container?
thanks