Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Ebrahim Haji
Ebrahim Haji
6,712 Points

Jquery plugin - Slick

Arrows and Dots not appearing properly. It appears as symbols for some reason. The slick version is 1.50.

<html>
    <head>
        <link rel="stylesheet" type="text/css" href="../CSS/normalize.css">
        <link rel="stylesheet" type="text/css" href="../CSS/cars.css">
        <link rel="stylesheet" type="text/css" href="../slick/slick.css"/>
        <link rel="stylesheet" type="text/css" href="../slick/slick-theme.css"/>
    </head>
    <body class="main-wrapper">
        <header class="main-header">
            <div class="main-logo">HoneyBadger</div>
                <a class="main-links" href="../Home/index.html">Home</a>
                <a class="main-links" href="../About me/aboutme.html">Biography</a>
                <a class="main-links selected">Cars</a>
        </header>
        <div class="main-body-cars">
            <div class="main-content-cars">
                <p>
                    Favorite Cars
                </p>            
            </div>
            <div class="car_slide">
                <div><img src="sky.jpg" class="img_cars"></div>
                <div><img src="tiger.jpg" class="img_cars"></div>
                <div><img src="water.jpg" class="img_cars"></div>
            </div>      
        </div>
        <footer class="main-footer">
            &copy; Ebrahim Haji 2015 
        </footer>
        <script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
        <script type="text/javascript" src="../slick/slick.min.js"></script>
        <script src="../javaScript/dynamic.js"></script>
    </body>
</html>
@import url(http://fonts.googleapis.com/css?family=Oswald:400,700);
@import url(http://fonts.googleapis.com/css?family=Roboto:300,700,400);


* {
  box-sizing: border-box; }

html {

}
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;   
  }

/*=====================Background=====================*/
.main-header, .main-footer {
  background: rgb(118, 227, 137); }

.main-wrapper {
  background-color: rgb(159, 234, 172);}


/* =================Font===================*/

.main-logo, .main-links, .main-footer {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.main-content {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

/*=====================Header=====================*/
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-logo, .main-links {
  text-align: center;
  margin: 0.1%;
  width: 99.5%;
  padding: 5px;
  border-radius: 0;
  border: 3px solid rgb(124, 243, 145);
  background: PaleGreen;  }

.main-logo {
  font-size: 2rem;  }

.main-links {
  font-size: 1.2rem;
  color: black;
  text-decoration: none; }



/* ===================body===============*/
.main-body {
  display: flex;
  flex-direction: column;
  flex: 1; }


.main-content {
  text-align: center;
  padding: 10px;
}

.main-content p {

}
/* ===================footer===============*/
.main-footer {
  font-weight: 400;
  text-align: center; 
  padding: 10px;
}


.selected {
  border: 3px solid rgb(124, 243, 145);
  background: LightGreen;  
}
@import 'style.css';


/* ===================body===============*/
.main-body-cars {
  display: flex;
  flex-direction: column;
  flex: 1; }


.main-content-cars {
  padding: 10px;
}

.main-content-cars p {
  text-align: center;
}

.car_slide {
    align-self: center;
    width: 50%;

}

.img_cars {
    height: 200px;
    margin: 0 auto;

}