[Pro] background

how do you apply a striped background to the whole window when the page is centered


freewaytalk mailing list
email@hidden
Update your subscriptions at:

Do you mean a β€˜pattern’ perhaps? Just create an image that pretty much covers that pattern (10x10px or maybe 100x100px), apply it to your background and let it repeat X and Y. That’s all.

– Richard


freewaytalk mailing list
email@hidden
Update your subscriptions at:

you can also do it with css grad which uses no images

here is an example

  #PageDiv {
  background: repeating-linear-gradient(
  0deg,  
  #606dbc, #606dbc 10px,  
  #465298 10px, #465298 20px);
  }

kind regards


freewaytalk mailing list
email@hidden
Update your subscriptions at: