Quote:
Originally Posted by lodewijk6
How do I get that grey news block higher, so that it wil cover the top of the white box
|
Most tags have default margins and paddings, in this case the
<p> tag has a margin of 1em on the top and bottom. Most people like to just reset these:
Code:
* {
margin: 0;
padding: 0;
}
The
* selector will apply to all CSS tags. There are many other reset methods:
Eric Meyer Reset and
HTML5 Doctor, however the
* reset is the simplest.
-----------------------
Quote:
Originally Posted by lodewijk6
and my menu is very ugly, so please help my out there.
|
try using a CSS linear gradient.
http://css-tricks.com/css3-gradients/
-----------------------
Quote:
Originally Posted by lodewijk6
(still dont know where to post the code)
|
You can just post the code in your post. Remember to wrap it in [code][/code] tags:
[code]
// Code here
[/code]
Code:
this way {
it is properly: formatted;
}
However, it is preferable to just post a website link so we can see all the files and see the problem at hand. If you post code, just post a small segment of it where you the think the problem occurs along with a website link.