3 replies [Last post]
nvdwolk
nvdwolk's picture
Offline
Regular
Last seen: 6 years 19 weeks ago
Timezone: GMT+1
Joined: 2013-07-08
Posts: 21
Points: 34

Can anyone tell me what to adjust in my css in order to get the articles in the body and not beyond?

This is the URL:

http://www.voetinbalans.nl/nieuws/

Thanks in advance for your help.

Kind regards,
Niels

gary.turner
gary.turner's picture
Offline
Moderator
Dallas
Last seen: 2 years 13 weeks ago
Dallas
Timezone: GMT-6
Joined: 2004-06-25
Posts: 9776
Points: 3858

Your list bullets are outside

Your list bullets are outside because you set padding to zero. Don't; the padding is what creates the space for the bullets.

.meta {
  font-size: 0.9em;
  line-height: 1.3em;
  margin: 3px 0 0;
  }

It appears you closed the #wrapper immediately after the ul mentioned above. Delete that closing tag and place it immediately before the </body> tag.

It may be that your html syntax errors are causing at least some of the problems. Before you do anything else to the html, fix the errors.

cheers,

gary

If your web page is as clever as you can make it, it's probably too clever for you to debug or maintain.

nvdwolk
nvdwolk's picture
Offline
Regular
Last seen: 6 years 19 weeks ago
Timezone: GMT+1
Joined: 2013-07-08
Posts: 21
Points: 34

Respons

Gary,

Thank you very much for your imput, i analyzed your imput which is valuable to me as a beginning css user. What i did was i did not paste plain text so now i got rid of a lot of unneccecary tags which solved the problem.

Kind regards from Holland.

Niels

nvdwolk
nvdwolk's picture
Offline
Regular
Last seen: 6 years 19 weeks ago
Timezone: GMT+1
Joined: 2013-07-08
Posts: 21
Points: 34

Respons

.