Gaps and missing images in theme layout
Permalink
I am having some frustrating problems with the site I am trying to setup.
I am using the current version of Concrete 5. My host is 1&1.
The website is athttp://www.reliable-computer.net...
(It is not in a completed state, I am just trying to get the theme to work first).
Here are the two problems I am having specifically (visit the site to see exactly what is happening).
1. In my CSS, one of my divs has a background image that is not loading. I am absolutely certain that I am telling it to go to the correct location (and this can be checked by going through the CSS and then manually entering the address into your browser), but it simply will not show.
2. Below the content section of my page, there is a strange gap showing. I think it is 10px high (on a visual guess). Also, I suspect it is showing up where a new content block could be (but has not) been added, but that may just be speculation.
I need help or at least some advice on this before I go insane. I have setup other sites with C5, and all have worked fairly well... but this is the first site I have seen these two problems with.
I am using the current version of Concrete 5. My host is 1&1.
The website is athttp://www.reliable-computer.net...
(It is not in a completed state, I am just trying to get the theme to work first).
Here are the two problems I am having specifically (visit the site to see exactly what is happening).
1. In my CSS, one of my divs has a background image that is not loading. I am absolutely certain that I am telling it to go to the correct location (and this can be checked by going through the CSS and then manually entering the address into your browser), but it simply will not show.
2. Below the content section of my page, there is a strange gap showing. I think it is 10px high (on a visual guess). Also, I suspect it is showing up where a new content block could be (but has not) been added, but that may just be speculation.
I need help or at least some advice on this before I go insane. I have setup other sites with C5, and all have worked fairly well... but this is the first site I have seen these two problems with.
I was able to correct the gap in the page by adding a line break, which is pretty much ridiculous, but it did fix it.
Still have the nearly magical image that for some reason does not seem to exist in C5, but exists everywhere else... and to add insult to injury, even if I tell it the exact location of the image, it refuses to show up. The code I am using in the css for this file is "background-image: url(./images/RCS-Navbar1.jpg);" (without the quites, of course).
Still have the nearly magical image that for some reason does not seem to exist in C5, but exists everywhere else... and to add insult to injury, even if I tell it the exact location of the image, it refuses to show up. The code I am using in the css for this file is "background-image: url(./images/RCS-Navbar1.jpg);" (without the quites, of course).
I am sorry everyone, I am a moron. I had a capital letter in the filename where there was not supposed to be one.
Word of advice for anyone who is having CSS background-image property issues though, as I saw several topics about it, make sure that your formatting is not background-image:url('mysite.com/images/image.jpg');, but is instead background-image:url(mysite.com/images/image.jpg);.
The quote marks will apparently not work with Concrete 5. Get rid of em, and all is well.
Word of advice for anyone who is having CSS background-image property issues though, as I saw several topics about it, make sure that your formatting is not background-image:url('mysite.com/images/image.jpg');, but is instead background-image:url(mysite.com/images/image.jpg);.
The quote marks will apparently not work with Concrete 5. Get rid of em, and all is well.
As I mentioned earlier, it is definitely there. And, I am fairly sure I have not made any syntax errors in the CSS, as all the background images are in the same directory.