Hello, as soon as I upgrade my site www.jitty.nl all image links and other stuff does not function anymore. I have a testing domain https://jittysamsterdam.com where you can see the issue.
Let’s start with the missing header image. There is a media query which points to the images. The images are online. This is the css
$el.x-section{
padding-top: 175px;
padding-bottom: 130px;
background-color: #000;
}
$el .x-bg{
background: url(/wp-content/uploads//Goede-kapper-Amsterdam-voorpagina-1925.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
top: 60px;
height: calc(100% - 60px);
}
@media only screen and (max-width:1199px){
$el.x-section{
padding-top: 120px;
padding-bottom: 100px;
}
$el .x-bg{
background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url(/x§);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
}
@media only screen and (max-width:979px){
$el.x-section{
padding-top: 100px;
padding-bottom: 80px;
}
$el .x-bg{
background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url(/wp-content/uploads/Goede-kapper-Amsterdam-979.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
}
@media only screen and (max-width:767px){
$el.x-section{
padding-top: 100px;
padding-bottom: 50px;
}
$el .x-bg{
background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url(/wp-content/uploads/Goede-kapper-Amsterdam-767.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
top: 0px;
height: 100%;
}
}
@media only screen and (max-width:480px){
$el.x-section{
padding-top: 100px;
padding-bottom: 10px;
}
$el .x-bg{
background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url(/wp-content/uploads/Goede-kapper-Amsterdam-480.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
}
It works fine on the old site, as soon as I upgrade to newer version of PRO this does not work anymore.
Secondly images on the middle of the page also does not show and I have other issues with sidebars. Sorry to have to many issues at once.
I think it would be wise the upgrade individual elements of the site to newer elements. But before I will do that let’s see if we can fix the major issues.
Thanks,
Ronald