I don't know, but since I'm taking an intro course in CSS on Codecademy, I do know how to make text turn really big and bright with a dotted border around it for no reason when you hover over it. Does this help?
If you're sure you want to remove it, find the id of the div that has that sidebar and add display:none. It seems it's called menu, so it would be something like: #menu { display: none; } That will however leave a gap where it was, so you'll have to remove the margin using something like this: #content { margin-left: 0px } If you like the size of the entries at this point leave it be, otherwise add this to your custom css to bring it to the original size and center it: #entries { width: 620px; margin: auto; } The same code can be used to center the footer if you want, only with 640px, instead of 620px.
Comments 4
Reply
Reply
Reply
That will however leave a gap where it was, so you'll have to remove the margin using something like this: #content { margin-left: 0px }
If you like the size of the entries at this point leave it be, otherwise add this to your custom css to bring it to the original size and center it: #entries { width: 620px; margin: auto; }
The same code can be used to center the footer if you want, only with 640px, instead of 620px.
Reply
Leave a comment