×
          
              
          
      
      Clear all filters including search bar
          
        Valeri Tandilashvili's Personal Professional Blog
      
    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<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;
}@media screen and (max-width: 500px) {
    .hide-mobile {
        display: none;
    }
}