include_once '../../config.php';
But works one of these lines:include_once './../config.php';
include_once $_SERVER['DOCUMENT_ROOT'].'/../config.php';
Output of the second solution is:/storage/content/95/1009995/test.sibrdzne.ge/public_html/../config.php
.site-header nav {
ul {
padding: 0;
margin: 0;
}
li {
list-style: none;
float: left;
}
}
After Sass preprocessor:.site-header nav ul {
padding: 0;
margin: 0;
}
.site-header nav li {
list-style: none;
float: left;
}
$primaryColor: #ec7705;
a {
color: $primaryColor;
}
After Sass preprocessor:a {
color: #ec7705;
}
.container {
background: url(../images/tile.png) left bottom repeat-x, #FFF url(../images/tile.png) left top repeat-x;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
This tag gives the browser instructions on how to control the page's dimensions and scaling. The line should always be included to create a responsive layout@media screen and (max-width: 500px) {
nav ul li {
width: 50%;
font-size: 120%;
}
}
@media screen and (max-width: 620px) {
nav ul li {
width: 33%;
}
}
nav ul li {
width: 25%;
border-bottom: 1px solid #bababa;
}