Hello,
I am creating two columns for the homepage and I would like to create a border image that is placed below the H2 for each column. If the border-image is not supported in previous versions of IE, then what should I do to make it compatible?
HTML
<div class="welcome_column"> <h2>Welcome</h2> <p>Column text...</p> </div>
CSS
.welcome_column { background-color: #ffffff; }
.welcome_column h2 { font-family: 'Open Sans', Arial, sans-serif;
font-size: 1.4em;
font-weight: normal;
color: #ffffff;
background-color: #124661;
padding: 6px 0 6px 6px;
margin: 0;
text-align: left; }