• Alright, so I’m working on the site http://www.charismaproject.com

    All I want to do is push or extend the second (black) sidebar to the edge so that there is no white showing along the left side of the page. I believe everything is floating right and I can’t find a padding/margin that would cause this…

    Can anyone help? I’m sure it’s an easy fix and just need another set of eyes to look it over.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter hibachi

    (@hibachi)

    I should clarify, there will be a VERY thin white vertical line on the left side of the blog page, (similar to the border around the header and footers).

    Anyways, help would be appreciated.

    A lot of people forget than when you look at an (X)HTML page without any CSS styles imported or attached, you’re not looking at a clean style-less page. But you see the browsers default style. The browser styles make header tags bold and lager, adds margins to the body and blockquotes, underlines links and turns them blue etc.

    When you want more control over your styles you can undo a lot of these styles with a wildcard selector in your CSS file. Just add something like this to the top of your stylesheet to rid you of those unwanted margins and other browser styles:

    * {
    	margin: 0;
    	padding: 0;
    	border: none;
    	text-decoration: none;
    	font-style: normal;
    	font-weight: normal;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Quick CSS Help!’ is closed to new replies.