repeating sidebar

  • Thread starter Thread starter Teach5th
  • Start date Start date
T

Teach5th

How do I stop a sidebar from repeating on the wider screen monitors? I tried
putting no-repeat in the html but that didn't work.
 
I think the OP means stop a background image from repeating (backbluecheck.gif)
Set the background to not repeat using
<STYLE>
body { background-image: url('backbluecheck.gif'); background-repeat: no-repeat }
</STYLE>
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Here's the page.
|
| http://www.epd86.org/bolin/bolin.html
|
| "Rob Giordano [MS MVP]" wrote:
|
| > Post a link to the offending page so we can see it.
| > ..
| >
| >
| > --
| > ~~~~~~~~~~~~~~~~~~
| > Rob Giordano
| > Microsoft MVP Expression
| >
| >
| >
| >
| >
| >
| > | > > How do I stop a sidebar from repeating on the wider screen monitors? I
| > > tried
| > > putting no-repeat in the html but that didn't work.
| >
| >
| >
 
this stops the sidebar from repeating on the wider screens BUT it also stops
the sidebar from repeating the image down the side as it should....any other
suggestions?
 
Change it to
<STYLE>
body { background-image: url('backbluecheck.gif'); background-repeat: repeat-y }
</STYLE>


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| this stops the sidebar from repeating on the wider screens BUT it also stops
| the sidebar from repeating the image down the side as it should....any other
| suggestions?
|
| "Stefan B Rusynko" wrote:
|
| > I think the OP means stop a background image from repeating (backbluecheck.gif)
| > Set the background to not repeat using
| > <STYLE>
| > body { background-image: url('backbluecheck.gif'); background-repeat: no-repeat }
| > </STYLE>
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > _____________________________________________
| >
| >
| > | Here's the page.
| > |
| > | http://www.epd86.org/bolin/bolin.html
| > |
| > | "Rob Giordano [MS MVP]" wrote:
| > |
| > | > Post a link to the offending page so we can see it.
| > | > ..
| > | >
| > | >
| > | > --
| > | > ~~~~~~~~~~~~~~~~~~
| > | > Rob Giordano
| > | > Microsoft MVP Expression
| > | >
| > | >
| > | >
| > | >
| > | >
| > | >
| > | > | > | > > How do I stop a sidebar from repeating on the wider screen monitors? I
| > | > > tried
| > | > > putting no-repeat in the html but that didn't work.
| > | >
| > | >
| > | >
| >
| >
| >
 
Back
Top