shell
shell

Reputation: 69

Responsive css behaving strangely

Don't even know where to begin. My guess is that this happened when i tried to syle bootstraps col-xs to a different width. Took away that styling. Didn't help. Canceled a few other latest changes. It stays the same. I know that's a lot to ask to look for something in a source, but i don't have any idea where to look.

For some reason. the site gets styled for small screen.

Live link here http://soloveich.com/pr6/acupuncture/

Thank you!

Upvotes: 0

Views: 40

Answers (2)

celerno
celerno

Reputation: 1387

the main div there is a <div class="row">. I assume you need that div inside a <div class="container">. Look at http://getbootstrap.com/css/#overview-container

Upvotes: 0

rockStar
rockStar

Reputation: 1296

.col-xs-12 {
width: 300px;
}

and

.entry-content p {
min-width: 300px;
}

find this style and remove it, its conflicting with the responsive style.

Upvotes: 1

Related Questions