For the body the background image is set using CSS (bg-not-front.gif, bg-pattern.gif or bg-pattern-t.gif). However, on larger screens there appears white space on left and right (see image as example). It would be handy to use a color to fill the rest of the gap.

CommentFileSizeAuthor
20130428 andromeda background issue.jpg258.69 KBmarcel.jtf
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jose.rifaie’s picture

Issue summary: View changes

hi, am new to drupal i have the same problem i think i am missing some thing
thanks


edit:


i think i found a solution

go to
themes/andromeda/css/layout.css

change the values below

body{
  margin:0;
  padding: 0;
  color: #363636;
  font-family: Arial,Tahoma,Verdana;
  font-size: 12px;
  background:url('../images/bg-not-front.gif') no-repeat center top #F5F5F5;
}

body.with-slideshow {
  background:url('../images/bg-pattern-t.gif') no-repeat center top #F5F5F5;
}

with this one

body{
  margin:0;
  padding: 0;
  color: #363636;
  font-family: Arial,Tahoma,Verdana;
  font-size: 12px;
  background:url('../images/bg-not-front.gif') repeat-x center top #F5F5F5;
}

body.with-slideshow {
  background:url('../images/bg-pattern-t.gif') repeat-x center top #F5F5F5;
}

just change from no-repeat to repeat-x