So. After previous help here, I made progress with making the site responsive and with better text contrast.
To further improve things I had a go at media queries to hide my sidebar when loading the site on a phone, etc. This works to an extent however I now have a separate issue to my current problem with the desktop site.
My sidebar now ends up at the bottom-right hand corner of the page instead of next to the content and I cannot work out what I’ve done to mess it up.
thanks! floating left just pushes it left between the content and the footer.
It was really over to the right and at the bottom and now it’s where it is now.
I’m now trying to move it vertically up the page so that the top of the sidebar is level with “Welcome”.
It was there - I just managed to bugger things up somehow and my NAS with my backups fell off the shelf ( don’t ask! ) and trashed two of my raid 5 drives so I can’t go back to where I was!
I just can’t work out what I screwed up and it’s driving me nuts!
You have Content as float:inherit when I think you meant to make it float:left.
#content{float:left}
Then you would need to contain the floats at #page otherwise the parent does not contain the floats (use the clearfix technique or add overflow:hidden to #page assuming you don’t need visible overflow - or use any of the other float containing mechanisms.).