Css cursor:pointer won't register and neither will width or height -


my css:

.uploadify {     position: relative;     margin-bottom: 1em;      width:264px;     height:54px;     cursor:pointer; } 

this should make div on attached html file (which has been saved accessibly administrators of site) specified size, doesn't reason. how can override this? cursor:pointers on other divs being hovered on aren't registering

http://client.henrybuilt.com/upload%20download%20files.htm

the width , height properties overriden direct styling style attribute:

<div id="file_upload" class="uploadify" style="height: 30px; width: 120px;"> 

it's pretty easy spot kind of mistakes. need open developer console / developer tools / inspector (available in @ least in firefox, ie , chrome) , select element in question. see applied styles element , sources (i.e. style attribute).


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -