CHANGING THE WIDTH OF MY WEBSITE!

  • Unknown's avatar

    Hello… does any body know what CSS code I can use to change the width of my website? I am currently using the personal theme. My website is currently in the centre of the page with two strips down each edge but i would prefer it if the strips where not there.

    Thanks in advance, Amy.

    The blog I need help with is: (visible only to logged in users)

  • Hi!

    To avoid Stripes, you need to add this CSS custom code:

    #footer {
      border-top: 0px;
    }
    
    .footer-text {
      border-top: 0;
    }

    About your website width, rigth you have a fixed max-width in three areas, header, footer and content. You can make this bigger, modifying these values. The following example will do nothing, because those are the current values. Try to change them to see which are more adjusted to your expectations:

    #content-container {
    max-width: 940px;
    }
    .footer-text {
    max-width: 940px;
    }
    #header {
    max-width: 940px;
    }

    I hope this helps you.

  • The topic ‘CHANGING THE WIDTH OF MY WEBSITE!’ is closed to new replies.