Need help with styling
-
I am wanting to try and add boxes around my content like whats on this website
https://www.trafficgenerationcafe.com/stop-focusing-on-your-audience/I only want the content, not the sidebars or anything else. But I dont know much about CSS or HTML. Is this an easy thing to accomplish?
The reason why I am wanting to do this is to help separate my content from the theme style.
So far here is what I have come up with
div#content{
background-color: white;
width: 400px;
padding: 25px;
border: .5px solid grey;
margin: 25px;
box-shadow: 0px 19px 5px -15px #888888,
inset 0 0 5px rgba(0,0,0,0.3);
-webkit-box-shadow: 0px 19px 5px -15px rgba(136,136,136,1),
inset 0 0 5px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 19px 5px -15px rgba(136,136,136,1),
inset 0 0 5px rgba(0,0,0,0.3);
border-radius: 5px;
}But this just puts everything on my site into boxes. Incase you need to know how my site is set up the address is fittosurvive.net
Thanks
- The topic ‘Need help with styling’ is closed to new replies.