Reputation: 515
I recently purchased a jquery news slider to use on my website, and when I add it to my homepage, the calls in the header move the navigation and slideshow so that the entire page is messed up.
The page looks like this before I add the news feed: http://www.bovinsnbcattle.ca/
And like this after I add the news feed (jquery/javascript/css): http://www.bovinsnbcattle.ca/index2.html
Is there an easy way to fix this conflict, or do I have to buy a different news slider?
Upvotes: 0
Views: 44
Reputation: 5340
The problem is with bootstrap.css line 661,
ul,
ol {
padding: 0;
/* the left margin 25px cause the problem, remove or comment this line */
/* margin: 0 0 10px 25px; */
}
Upvotes: 1