Is it possible to get the width of the browser web view and act on it if it is greater than 1000px?
Example (in pseudocode):
If browser width is greater that 1000px;
<div style="position:fixed; top:0; left:0; z-index:1; visibility:visible;">
<img src="images/borderleft.png">
</div>
Modern Way: Media Queries
2011 Way: JQuery
And for more information…jquery width() documentation.