jmixmaster29
New Member
- Messages
- 29
- Reaction score
- 0
- Points
- 0
I am trying to add a CSS border around my site (which is using Wordpress) to create a break-way between the main website block and the background color. I am still quite new to HTML/CSS but I do know how to read it and what most of it does. I wrote this style for the border:
I then created a div and wrapped it around "<?php get_header(); ?>" and "<?php get_footer(); ?>" because I want to use the same border to surround the header and footer and everything in between. If you go here: http://gotdocs.co.cc/2011/02/26/hello-world/ you will see what happened. Any idea of what could be wrong?
Code:
#border{
border: 1px solid #000;
position: absolute;
}
I then created a div and wrapped it around "<?php get_header(); ?>" and "<?php get_footer(); ?>" because I want to use the same border to surround the header and footer and everything in between. If you go here: http://gotdocs.co.cc/2011/02/26/hello-world/ you will see what happened. Any idea of what could be wrong?