Why do you have that big negative margin? #page1 header doesn't need to be as tall as it is. Take off the negative margin and change #page1 header's height to 480px. That will put your content in the right place for other browsers. If it's not in the right place in IE (I can't test in IE on a...
That's only true if assets is in the root directory. What if this is something like a wordpress theme where the theme is in wp-content/themes/mytheme/.... then using / wouldn't work. Please try to be clear with your answers to avoid confusion.
That's true but that's really the case with any site that relies on pulling from other websites. What are you trying to do? There might be a better way
That doesn't sound shady at all.....
If you have the code to put substance X into your database then it should be no problem to echo substance X out of that database and into your web page...
Whew Glenn you're reaching back there, I don't know if my memory will go back that far XD
If you managed to get this working correctly where you're grabbing the URL's and putting them in a database then can't you just echo them out of that database into the src of and img tag?
Because you're using the empty divs for the background images, it's messing up your background. Take those out completely and use that image as the body background and it stretches like you want it to.
Yeah Ronald.... very peculiar! I guess it could be a legitimate question if the person is looking for some things to say to a client to try to sell himself or something....
That person used an unordered list for the navigation and then inside each list item there was an anchor tag and a div inside there with all the dropdown info. The dropdown info is set to display: none by default and then when you hover over the list-item they set the dropdown div to block instead.
Typically I just set a solid color fallback for IE but shouldn't you be able to make an actual image and use that? So use the image first then go through the different prefixes (wish they'd get rid of that). I may be wrong here but that seems to me like it should work.
I'd make sure you put in some sort of CSS reset. At the very least
body {margin:0; padding:0;}
This will get rid of the white border that I saw in chrome.