Background images don't scale. But this problem you are having would be easily solved by setting a pixel width on the h3 rather than a % width:
e.g. instead of
Code:
#more_videos h3 {
float: left;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
margin-left: 22%;
margin-bottom: 10px;
width: 28%;
background: url('../images/youtube_bw.png') no-repeat;
height: 35px;
}
try this
Code:
#more_videos h3 {
float: right;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
margin-left: 22%;
margin-bottom: 10px;
width: 84px;
background: url('../images/youtube_bw.png') no-repeat;
height: 35px;
}
and then change this
Code:
#more_videos ul {
clear: left;
font: 1em helvetica, arial, sans-serif;
margin-bottom: 10px;
}
to this
Code:
#more_videos ul {
clear: both;
font: 1em helvetica, arial, sans-serif;
margin-bottom: 10px;
}
Bookmarks