Hi @OHA-Osthang
it is possible to show a project description:
[image: 1512364832758-bildschirmfoto-2017-12-04-um-13.20.16-resized.png]
[image: 1512364843536-bildschirmfoto-2017-12-04-um-13.20.21-resized.png]
I hope that answers your question.
Have a good day!
Marius
@arminunruh
Ok thanks for the reply!
I do see the issue across all browsers i use (FF, Safari, Chrome)
Thanks for clarifying the cover issue, so it seems i interpreted the check box wrong.
Could you give me a hint of how to use CSS to disable the cover row for mobile across the website, but only for project pages?
Thanks!
Leo
Hi @dsong3832
ok. Now I understand.
Your solution is a quick and dirty solution. but possible. I would not use it for a complex website. But for a portfolio website which you build yourself it should be fine.
Otherwise you need to use jQuery.
First of all your code looks pretty messed up. Try this:
#hover {
background: url('image A.jpg');
background-repeat: no-repeat;
background-size: contain;
width: 30vw;
height: 10vw;
}
#hover:hover {
background: url('image B.jpg');
}
<div id="hover"></div>
Play around with the size to see what fits you the best.Also you can play around with the background-image-size.
I hope I could help!
Have a good day!
Marius