Why does my website have a horizontal scroll bar?

2.4k views Asked by At

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.

1

There are 1 answers

1
m4n0 On BEST ANSWER

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">