• On my website: https://shnappstuff.com/news, you can see that all the formatting of the blog is not applying.

    For example:
    All the post’s titles are meant to be in bold.

    I believe it has something to do with the sidebar styling. Here’s an excerpt:

    #sidebar {
    position: fixed;
    top: 5px;
    font-weight:bold;
    padding: 8px;
    color: #000;
    text-align: left;
    width: 170px;
    }

    #sidebar p.menu {
    padding: 5px;
    color: #000;
    font-weight:bold;
    position: relative;
    width: 170px;
    }

    Please help!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter brycead

    (@brycead)

    BUMP!

    I’m not sure why you think it has do to with your sidebar?

    If you look at your post titles in your index.php, it looks like the titles are referenced by the ul.post in your stylesheet.

    Maybe some CSS gurus can help you out, but that is where I would start.

    You might want to go into your CSS and fix up a line of code:

    #sidebar p.menu {
    	padding: 5px;
    	color: #000;
            font-weight:bold;
    	position: relative;
    	width: 170px;
    
    #sidebar p {
    	color: #000;
    	font-weight: normal;
    }

    Notice that above the #sidebar p you don’t have a closing } bracket. Your CSS is going to fail after that because it’s a big big error. Go into your CSS and put that bracket in and it should help fix things.
    Cheers.

    Oh and further down (approx line 415) you have a problem with your commenting:

    .entry form {
    	/
    
    * This is mainly for password protected posts, makes them look better. */
    	text-align: center;
    }

    Move that / forward slash down in front of the star, so that it reads it properly as a code hint.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Formatting not working!’ is closed to new replies.