Wesley Bowman
Wesley Bowman

Reputation: 1396

Why does my website have a horizontal scroll bar?

I have a horizontal scroll bar on three on my seven pages, and I do not understand why. At first, I thought it was because of my footer, so I changed the footer to make sure that wasn't the issue. Changing the footer fixed my landing page, but did not fix the three below:

home, story, venue

I have looked through, and my style.css is the only style sheet I have, and I cannot find the issue. any assistance would be appreciated.

I have not found anywhere where I have width=100% or anything like that. I have read a few other post, and haven't found any blatantly obvious things that are wrong.

Upvotes: 1

Views: 2455

Answers (1)

m4n0
m4n0

Reputation: 32255

Change the markup of the footer. Container comes outside row not inside.

<footer>
 <div class="row">
  <div class="container">

to

<footer>
 <div class="container">
  <div class="row">

Upvotes: 9

Related Questions