html - Removing Border / Background using Custom CSS -


i have custom 404 page. example of same can found @ http://www.techquark.com/123123

i need make box border go away , background white.

for pasted below css :

.status-msg-border {border: 0;} .status-msg-body {background-color: #ffffff;} .status-msg-wrap {width: 100%; margin: 0px auto;} .status-msg-bg {background: transparent;} 

but it's not working , box still has border , color. below 404 page code :

<div class='status-msg-wrap'> <div class='status-msg-body'> <div style="text-align: center;" trbidi="on"> <h2> 404 page not found</h2> sorry page looking cannot found. <br/><br/> if you're in denial , think conspiracy cannot possibly true, please try using search box below or <a href="http://www.techquark.com/p/contact-us.html" target="_blank">contact me</a>. <br/><br/> <form action="/search" id="searchthis" method="get" style="display: inline; margin: 20px auto;"> <input id="searchbox" name="q" onblur="if(this.value=='')this.value=this.defaultvalue;" onfocus="if(this.value==this.defaultvalue)this.value='';" type="text" value="search blog" vinput="" /> <input id="searchbutton" type="submit" value="go" /></form> <br/><br/> may want move <a href="http://www.techquark.com/" target="_blank">homepage</a> fresh start of our relationship. <br/><br/> <a href="http://1.bp.blogspot.com/-wnon6ndu7ws/wpcqtnfaxgi/aaaaaaaaozq/nlrrq9so7awqjdawxcl9zaur08ev2lutqck4b/s1600/404.jpg" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-wnon6ndu7ws/wpcqtnfaxgi/aaaaaaaaozq/nlrrq9so7awqjdawxcl9zaur08ev2lutqck4b/s1600/404.jpg" /></a> </div> </div> 

here output, i'm expecting :

enter image description here

any on same appreciated!

in css, try adding border:1px solid transparent; , background try background-color:white;. hope helps!


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -