Html And Bootstrap Carousel Issue
footer.php
Pages
- &l
Solution 1:
after the above suggestion i changed my header.php
<!DOCTYPE htmlPUBLIC"-//W3C//DTD HTML 4.0 Strict//EN"><htmllang="EN"><head><metaname="viewport"content="width=device-width, initial-scale=1"><metahttp-equiv="Content-Type"content="text/html; charset=UTF-8"><linkrel="shortcut icon"href="images/logo.jpg"type="image/x-icon" /><title>Ranng|Paint,Dyes and Wood Stains For Your Home</title><scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script><scriptsrc="js/jquery-3.3.1.min.js"></script><scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script><scriptsrc="js/bootstrap.min.js" ></script><linkrel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"><linkrel="stylesheet"href="styles/bootstrap.min.css" /><linkrel="stylesheet"href="styles/mystyles.css" /><linkrel="stylesheet"href="font-awesome/css/font-awesome.min.css" /></head><body>
Solution 2:
Maybe it's not working on your source bootstrap or jquery, try to change below.
Bootstrap CSS.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
Bootstrap JS.
<scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
Jquery
<scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
You can put this on header.php
Hope this help you. Good luck.
Post a Comment for "Html And Bootstrap Carousel Issue"