Quote:
Originally Posted by In Omnibus
There's no easy way to do this with Hanafi's themes because he uses three or four different header columns in his themes and they are probably flex boxes. You need the exact code to know what has to be done to it. Ideally he would be the person to ask. Is he unavailable? Or does he not want to do the work for nothing? That seems more likely the case. We're really not supposed to publicly redistribute edited copies of his work. That makes it impossible for me to edit the theme and post it or upload it here.
|
I realy don't know if he is available. This theme was free for download and discontinued for vb4 on sultantheme a while ago. So i guess there is no problem with rights or somthing like that.
--------------- Added [DATE]1592463558[/DATE] at [TIME]1592463558[/TIME] ---------------
Quote:
Originally Posted by snakes1100
You will need to do something like this with different size images & call them based on media size.
Code:
@media (max-width: 768px) { /*breakpoint*/
.adcontainer {
flex-direction: column;
}
}
.above_body {
background-image: url(https://www.xxxxxx.com/forums/images/logo-bg-fade-2.png);
}
@media screen and (min-width: 320px) {
.above_body {
background-image: url(https://www.xxxxxxx.com/forums/images/logo-bg-fade-600x200.png);
}
}
@media screen and (min-width: 640px)
{
.above_body {
background-image: url(https://www.xxxxx.com/forums/images/logo-bg-fade-900x200.png);
}
}
@media screen and (min-width: 1024px) {
.above_body {
background-image: url(https://www.xxxxxxx.com/forums/images/logo-bg-fade-1900x200.png);
}
}
|
I am going to look if i can do something with this.
Thank you