I notice that I am getting "page not found" errors in the Drupal error report for "sites/all/themes/galapagos2/images/style1/arrow-single-right-green.png". And indeed "/sites/all/themes/galapagos2/css/style1.css" does refer to it on line 203:
#user-bar li {
float: left;
padding: 0 10px 0 12px;
display: block;
background: url(../images/style1/arrow-single-right-green.png) no-repeat left 50%;
}
and line 615:
#primary-links ul li ul li.expanded {
background: url(../images/style1/arrow-single-right-green.png) no-repeat right;
}
However, it is not present in my version of the Galapagos theme. I rechecked in the original installation just in case I had deleted it by mistake, but it is not there either. Nor in any of the other style2-5 subdirectories.
Doing a quick check, I notice a couple of other images that are missing:
mini-comment.png on line 931:
a.comment_add {
padding-left: 22px;
background: url(../images/style1/mini-comment.png) no-repeat left;
}
and arrow-double-right-green on line 936:
a.node_read_more {
padding-left: 12px;
background: url(../images/style1/arrow-double-right-green.png) no-repeat left;
}
Would it be possible to get these images for the style1-5?
Thanks,
-Tony
Hi Tony,
I believe these are actually remnants from the development stage that ended up being overlooked and weren't cleaned up, so those images weren't supposed to appear in the first place. I'll send you along some updated versions of the stylesheets via e-mail that'll remove those errors.
Hi, Rob - unfortunately i have the same mistake, but in style3
sites/all/themes/galapagos2/images/style3/arrow-single-right-green.png
can you mail me that png or updated css file pleese?
Well, after some confusion (OK, stupidity) I realized that these images should have been included. I'm not even sure why they were missing in the first place. Anyway, they're attached to this post. They're the same for every style, so you just need to copy them into the style's image folder.
| Attachment | Size |
|---|---|
| arrow-single-right-green.png | 2.83 KB |
| arrow-double-right-green.png | 440 bytes |
| mini-comment.png | 217 bytes |
Thanks. On further checking I noticed that style1.css mentions mini-comment.png in two places:
style1.css line 870:
li.comment_reply a {
padding-left: 20px;
background: url(../images/mini-comment.png) no-repeat left;
}
style1.css line 929:
a.comment_add {
padding-left: 22px;
background: url(../images/style1/mini-comment.png) no-repeat left;
}
Notice that one uses the path ../images and the other uses ../images/style1 . I am thinking that both should be the ../images . There already is a (all be it different) mini-comment.png in ../images so I think the path in the second use needs to be changed to:
style1.css line 929:
a.comment_add {
padding-left: 22px;
background: url(../images/mini-comment.png) no-repeat left;
}
and then there is no need for the new mini-comment.png .
-Tony




