Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* {
  margin: 0;
  padding: 0;  
}

body {
 background: beige;
  color: #B1B1B1; 
}

#contactform {
border-radius:25px;
background:white;
cursor:pointer;
border-color: red;
box-shadow:0px 20px 20px -20px;
width: 90px;
height: 50px;
position: fixed;
bottom: 0 !important;
right: 0 !important;
justify-content: right !important;
}

#contact {
  overflow: auto;
}


{
    box-sizing: border-box;
 }

#contact #form {
  max-width: 410px;
  float:bottom;
  position:right;
  width:410px;
  display: none;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}
#contact #form h2 {
  font: 48px 'Bree Serif', Georgia, serif;
}
#contact #form span {
  display:block;
  float:left;
  width:100px;
  padding-top:5px;
  font: 14px/16px'Bree Serif', Georgia, serif;
}
#contact #form input {
  float:left;
  width:255px;
  border:0px;
  color:#F1F1F1;
  padding:10px 10px 10px 30px;
  font: 11px/20px'Open Sans', Verdana, Helvetica, sans-serif;
  margin-bottom:10px;
}
#contact #form textarea {
  float:left;
  border:0px;
  width:255px;
  height:140px;
  padding:10px 10px 10px 30px;
  font: 11px/20px'Open Sans', Verdana, Helvetica, sans-serif;
  color:#F1F1F1;
  resize: none;
}
#contact #form input.name {
  background:#222222 url(http://img7.uploadhouse.com/fileuploads/17737/177370145f09fe433945815665aa214f80dbc6af.png) no-repeat 10px 8px;
}
#contact #form input.email {
  background:#222222 url(http://img6.uploadhouse.com/fileuploads/17737/177370138cc63992182149e9befabff3eafa6d23.png) no-repeat 10px 9px;
}
#contact #form input.captcha {
  background:#222222 url(http://img3.uploadhouse.com/fileuploads/17737/17737011310213e71805ecf2292144cbbecf42ad.png) no-repeat 10px 9px;
}
#contact #form textarea.message {
  background:#222222 url(http://img3.uploadhouse.com/fileuploads/17737/1773701229ed8c2f465a8274623ca8976adaf196.png) no-repeat 10px 8px;
}
#contact #form input.submit {
  cursor: pointer;
  width:85px;
  height:30px;
  float:right;
  padding:0px 0px 5px 0px;
  margin:10px 16px 0px 0px;
  background:#222222;
  color:#F1F1F1;
  font: 14px/16px'Bree Serif', Georgia, serif;
}
#contact #form input.btn cancel {
  cursor: pointer;
  width:85px;
  height:30px;
  float:left;
  padding:0px 0px 5px 0px;
  margin:10px 16px 0px 0px;
  background:#222222;
  color:#F1F1F1;
  font: 14px/16px'Bree Serif', Georgia, serif;
}
#contact #captcha span{
  width: 24px;
}
#contact #captcha input{
  background: url(http://img3.uploadhouse.com/fileuploads/17737/17737011310213e71805ecf2292144cbbecf42ad.png) no-repeat scroll 0 0 transparent;
  margin: 5px 0 0;
  padding: 0;
  border: medium none;
  cursor: pointer;
  width: 15px;
}


What I have tried:

I added to the code...

    {
        box-sizing: border-box;
     }
Posted
Updated 25-Oct-19 7:06am
Comments
MadMyche 6-Sep-19 20:11pm    
You do realize the code provided has neither a form nor a button to pop it up?
Keith.Harrie 6-Sep-19 20:58pm    
yea... I left the HTML portion out ... but the id's and classes are there.
ZurdoDev 9-Sep-19 9:02am    
And what can we do with that without seeing the html? You said you have a button that won't execute code but did not show us the code for the button.

1 solution

Assuming you have a popup modal in your code, the chances are that if you have the HTMl and CSS correct the reason its not showing is because of jQuery conflict. This is a common issue, but without seeing your full popup modal code nobody can help.

Check developer console in chrome and see if there is any jquery error under "console" if not, please include your full modal code here.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900