There is conflict bootstrap.css with jquery.js (ajax). What can I do? -
i need use bootstrap & jquery(ajax) in code. .activeev doesn't work. if connect bootstrap.css code (ajax) unexpected. but, if disconnect bootstrap.css, .activeev expected. can in siyuation? p.s.: sorry englash.
header_style.css:
.activeev{ color: red !important; }
welcome.blade.php:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://fonts.googleapis.com/css?family=raleway:100,600" rel="stylesheet" type="text/css"> <link href="bootstrap-3/css/bootstrap.css" rel="stylesheet" type="text/css"/> <!-- if delete string, ".activeev" operates expected --> <!-- <link href="../../public/css/app.css" rel="stylesheet" type="text/css"> <!-- if use string ".activeev" operate expected, bootstrap unexpected--> --> <link href="bootstrap-3/css/header_style.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> </head> <body> @include('header') <div class="container-fluid"> <div class="row"> <div class="navbar navbar-default"> <div class="container "> <div class="col-md-8 col-md-offset-2 col-sm-12"> <ul class="nav navbar-nav centermenu"> <li class="loadbtn"><a name="top"> languages </a></li> <li class="loadbtn"><a> targets </a></li> <li class="loadbtn"><a> bd </a></li> <li class="loadbtn"><a> instruction </a></li> <li class="loadbtn"><a> cooperation </a></li> </ul> </div></div></div></div></div> <div class="container"> <div id="content"><a></a> </div> </div>
browser console:
an error occurred while parsing value of "background-color". bootstrap.css:6408:25
Comments
Post a Comment