I am new to custom CSS. My boss wants me to add Custom CSS in Qualtrics(under Look and Feel/Advanced). Everything seems to format fine in the edit preview window, but on the actual survey page the formatting for many elements is not applied:images are original size, div's are not visible, etc.
I'm assuming this has something to do with individual browsers, something I must specify such as a webkit thing, but I don't understand it too well. Here is a simple piece of my code(images are my biggest concern):
HTML:
<img id="bing" src="http://i39.tinypic.com/16kc3k0.jpg">;
CSS:
#bing{
display:block;
width:15%;
height:15%;
}
I know there's some attributes such as
-webkit-appearance: cover;
-moz-appearance: cover;