Tuesday, October 17, 2006

Tech questions.

I need some technical advice about page layout. The text here does not go all the way over to the right side bar. Anyone know how to fix this?

Also, I am looking for information on selling mobile content. Any smut peddlers out there have a company you love?

Thanks.
Ms B

2 comments:

  1. In the html, look for this section. It begins at line 108.

    @media all {
     #main {
       width: 400px;
       float: left;
       }

    Just change the "400px" to "700px", like this:

    @media all {
      #main {
       width: 700px;
       float: left;
       }

    ReplyDelete
  2. Ahhh. Thats better. Thank you.

    ReplyDelete