bob32
bob32

Reputation: 515

Jquery/Javascript conflicts moving nav and slider

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

Answers (1)

Andrew
Andrew

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

Related Questions