I created a layout using CSS in the content area of the theme. For some reason, I'm getting text that won't wrap properly in Internet Explorer. I added
word-wrap: break-word;
into the body area of the stylesheet. The text wrapped, but cut off whole words. The problem is here:
http://www.oppgen.com/propelgrowth-voice/
Here are the styles being used:
Code:
#centered_masthead {
width: 920px;
margin-right: auto;
margin-left: auto;
}
.blue_rule {
background-color: #000066;
height: 3px;
width: 920px;
text-align: center;
margin-right: auto;
margin-left: auto;
}
.masthead_textleft {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #666666;
text-align: left;
margin-top: 10px;
width: 350px;
float: left;
margin-left: 8px;
}
.masthead_textright {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #666666;
text-align: right;
margin-top: 10px;
width: 200px;
float: right;
margin-right: 14px;
}
#voice_content {
margin-top: 50px;
width: 920px;
margin-right: auto;
margin-left: auto;
clear: both;
}
.voice_article {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
text-align: left;
width: 440px;
margin-left: 200px;
margin-right: auto;
margin-top: 1px;
padding: 1px;
}
.voice_navleft {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #666666;
width: 150px;
float: left;
text-align: left;
margin-left: 8px;
font-weight: bold;
line-height: 13px;
margin-top: 4px;
}
.voice_sidebar {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #666666;
width: 230px;
float: right;
margin-right: 8px;
background-color: #f0f0f0;
}
.voice_green_sidebar {
background-color: #40A500;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight: bolder;
text-transform: uppercase;
color: #FFFFFF;
font-size: 16px;
text-indent: 4px;
padding-top: 6px;
padding-right: 6px;
padding-left: 12px;
padding-bottom: 7px;
margin-bottom: 6px;
}
.voice_text_sidebar {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #000000;
font-size: 12px;
padding-right: 16px;
padding-bottom: 6px;
padding-left: 16px;
padding-top: 6px;
font-style: italic;
}
.voice_footer {
width: 920px;
margin-right: auto;
margin-left: auto;
clear: both;
height: 20px;
}
.voice_sidebar_sub {
font-weight: bolder;
color: #000066;
line-height: 15px;
font-size: 13px;
}
.voice_article_head {
font-weight: bold;
text-transform: uppercase;
color: #000066;
font-size: 16px;
}
.voice_green_rule {
background-color: #40A500;
height: 2px;
margin-top: -14px;
margin-bottom: 14px;
}
.voice_articlebody {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
width: 440px;
padding: 1px;
}
Thanks in advance.