CSS Video Hack in questfox
Posted: 31. March 2022 Filed under: Uncategorized Leave a commentSometimes you do not want to disturb people during an interview showing them their own face.
While keeping up the recording quality, it is possible to shrink the video screen with CSS.
#videoElement {
max-width: 100px;
}
#videoContainer {
max-width: 200px;
}
#controlElement {
max-width: 300px;
}

If you want to have an instagram effect with the recording button on top of the video you can have the following setting
videoElement {max-width: 100px;
max-height: 100px;
}
videoContainer {max-width: 200px;
max-height: 100px;
}
controlElement {max-width: 300px;
color:blue;
}

Changing the Next Icon in questfox Next Button
Posted: 28. March 2022 Filed under: Uncategorized Leave a commentThe standard NEXT button in questfox appears to be boring sometimes. You can change the colors and the mouse-over colors including the text under project style and then Next-/Back-Button

Additionally you can change the little icon on the right side by adding a css to your project design
This is how you integrate the code for a standard icon
The icon should be around 30 pixels in height. You can also experiment with bigger ones.
.btnNext .btn::after { content: url(“https://linktoyouricon.png”); }
And in case you want to use a different icon for the mouse-over setting this is also possible with the :hover function
.btnNext .btn:hover::after { content: url(“https://linktoyouricon.png”); }
As you can see animated GIFs are also possible
Hope you can make things more beautiful with this little hack.