• Hello, I have a few CSS questions. On my website: http://www.hellomynameiscomics.com/ (please excuse any NSFW topics/words) I’m trying to surround all the “content” such as the logo, the navbar, the comic, and the news beneath in a black border to make it seem like it’s one piece. I don’t know if that makes sense, just imagine a straight black line shooting down vertically on the left and right hand sides.

    Also, I’ve made a category called “News” with a few posts and I’m wondering what code I need to edit to get it to display in the previous posts area where it displays the previous posts in the comic section that I’ve done.

    Thanks in advance to who ever can help.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter d00m1001

    (@d00m1001)

    Found out how to display the news on the homepage, but still looking for an answer on the first issue.

    Thanks.

    #page {
    width: 760px;
    margin: 0px auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    }

    replace that in your css page with what is currently there for the page div. if you want the border all the way around use this

    #page {
    width: 760px;
    margin: 0px auto;
    border: 1px solid #000;

    }

    that should work

    Thread Starter d00m1001

    (@d00m1001)

    radinicole, thank you!

    It works for the most part but, I also want it to go the length of the news and archive texts too. Refresh http://www.hellomynameiscomics.com/ and you’ll see what I mean.

    Thanks!

    you keep messing with it so i cannot see. Just keep messing with the css you seem to be on the right track

    Thread Starter d00m1001

    (@d00m1001)

    Well, It seems to work okay with your original code in IE7 but, in FireFox it just doesn’t span the length of the page. I’ve tried inserting things into the other #possibleplaces but, nothing seems to be working. Putting it in #columns didn’t work either.

    So yeah, any help on getting it working with FF would be great! 🙂

    Try adding a wrapper

    Thread Starter d00m1001

    (@d00m1001)

    What is a wrapper and how would I add it? I tried searching a bit about it but, there seem to be some margin and div variables that have to go with it and I’m not quite sure.

Viewing 7 replies - 1 through 7 (of 7 total)

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