• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Web Design Q w/ Div's

I don't know WHERE it is being applied, however, if you right click and then hit "inspect element" you can get all of the same information I just gave you (At least in chrome and firefox, IE might have this as well, but honestly, I don't use its tools that much).

The actual structure looks like this
HTML:
<div id="bodycontents">
  <h2><span>steps</span></h2>
  <div>stuff</div>
  <div>stuff</div>
</div>

Where the bodycontents is the surrounding div for the entire article. H2 has a background style applied to it which includes the image itself.
 
Alternatively, you could do the whole thing in pure CSS3 and use no images. 😉

http://jsfiddle.net/9PnBz/2/

Code:
h2 {
	position: relative;
	width: 50%;
	font-size: 1.5em;
	font-weight: bold;
	padding: 6px 20px 6px 70px;
	margin: 30px 10px 10px -70px;
	color: #555;
	background-color: #999;
	text-shadow: 0px 1px 2px #bbb;
	box-shadow: 0px 2px 4px #888;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        background: linear-gradient(to bottom, #f9f6f1 0%,#f0eadc 100%);
}

h2:after {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 0px;
	top: 100%;
	border-width: 5px 10px;
	border-style: solid;
	border-color: #C3BFB3 #C3BFB3 transparent transparent;
}
 
Back
Top