treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] centering slide via css

  • I'm starting to love this forum!

    Anyone can help me center the slide? Preferably via CSS of course.

    This is the webpage

  • if all the images will be the same width (as the two currently are) then give the ul that width and center it with auto left and right margins

  • tried it as per below:-

    <

    ul class="rslides" align="center" width="500">

    Still doesn't works. Any more ideas???

  • the images are 1122px wide - why would you give the parent ul a width of 500px (furthermore, why would you do it via inline styling)? I said to use left and right auto margins (like your nav uses) - not the align attribute (which is deprecated - use css).

      .rslides { 
        width: 1122px;
        margin: 0 auto;
      }
    
  • Sorry...didn't get u the 1st time. Now it's clear & solved. Thanks wolfcry911.