Skip to content

Commit

Permalink
In styles.css, changed root-relative paths to relative paths.
Browse files Browse the repository at this point in the history
Why: To make the code more portable.
  • Loading branch information
JonathanAquino committed Jan 9, 2010
1 parent 4d2a8a7 commit ff7456d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/stylesheets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Released for free under a Creative Commons Attribution 2.5 License
body {
margin: 0;
padding: 0;
background: #FFFFFF url(/latin/public/images/img01.jpg) repeat-x left top;
background: #FFFFFF url(../images/img01.jpg) repeat-x left top;
font: 13px "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #000000;
}
Expand Down Expand Up @@ -96,7 +96,7 @@ img.left {
height: 110px;
margin: 0 auto;
/* Image from http://commons.wikimedia.org/wiki/File:Steering_wheel_ship_1.png */
background: url(/latin/public/images/wheel.png) no-repeat 0 5px;
background: url(../images/wheel.png) no-repeat 0 5px;
}

#logo h1, #logo p {
Expand Down Expand Up @@ -397,7 +397,7 @@ img.left {
width: 950px;
margin: 0 auto;
padding: 30px 0;
background: url(/latin/public/images/img02.jpg) repeat-x left top;
background: url(../images/img02.jpg) repeat-x left top;
color: #B85212;
}

Expand Down

0 comments on commit ff7456d

Please sign in to comment.