Jump to content

Galaxyweaver

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Galaxyweaver

  1. Hello again! The last thing I am attempting to do for my 1st website is add a custom form that I made via https://coveloping.com/tools/html5-responsive-form-generator I was able to figure out how to get it to appear on my page however I didn't see an option in the builder to select which email the form should send to. I am assuming this will go into the HTML section and not the CSS section? +54 Karma points if you can assist me x) May The 4th Be With You.
  2. Thank you again kind sir! With your help today I learned so much. Please please check out the site I built... www.Summitsealantsutah.com I would very much appreciate ANY positive or negative feed back. Thank you have a great week everyone!
  3. For real Dave. That is all I do now with my time is study and learn. Thanks for lookin out! Please please feel free to critique anything.
  4. Thank you very much for you super fast response! I am soo rusty. Long story short is I somehow made it out of a life of terrible choices and now I am attempting to mold my future... That be said I am pretty much learning all over again.... So I added <head><a href="url">http://www.summitsealantsutah.com/home.html</a></head> just below the style tag above but it doesn't look right. Or Work haha. The builder I use has a Drag and Drop HTML section. So I was attempting to create said drag and drop per each button and hoping to have a link to each page for each button. I don't recall how to create external style sheets properly and my host has very limited storage space for now x( Could you possibly throw in the code that might work for me to try? Thank you so much!
  5. • Greetings I am attempting to Link page to a current button I have built. Please assist me! +500 Karma points! Page to Link -- http://www.summitsealantsutah.com/home.html Current Button Code -- <!DOCTYPE html> <html> <head> <style type="text/css"> .classname { -moz-box-shadow: -14px -39px 0px -50px #a11ea1; -webkit-box-shadow: -14px -39px 0px -50px #a11ea1; box-shadow: -14px -39px 0px -50px #a11ea1; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #707070) ); background:-moz-linear-gradient( center top, #ffffff 5%, #707070 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#707070'); background-color:#ffffff; -webkit-border-top-left-radius:15px; -moz-border-radius-topleft:15px; border-top-left-radius:15px; -webkit-border-top-right-radius:15px; -moz-border-radius-topright:15px; border-top-right-radius:15px; -webkit-border-bottom-right-radius:15px; -moz-border-radius-bottomright:15px; border-bottom-right-radius:15px; -webkit-border-bottom-left-radius:15px; -moz-border-radius-bottomleft:15px; border-bottom-left-radius:15px; text-indent:0px; border:8px solid #dbdbdb; display:inline-block; color:#000000; font-family:arial; font-size:26px; font-weight:bold; font-style:italic; height:48px; line-height:48px; width:124px; text-decoration:none; text-align:center; text-shadow:0px 5px 3px #4d4d4d; } .classname:hover { background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #707070), color-stop(1, #ffffff) ); background:-moz-linear-gradient( center top, #707070 5%, #ffffff 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#707070', endColorstr='#ffffff'); background-color:#707070; }.classname:active { position:relative; top:1px; } </style> </head></html>
  6. •Greetings! I would be soo grateful for some assistance or some direction. Even a link to another post would be radical. I am a brand new member and would truly appreciate some help. I have purchased a .com and am attempting to slowly but surely customize my site away from a template. •Current Issue I am attempting to add a specific CSS code into HTML tags via the web builder I am currently using. I feel I am either super close or I need to educate myself back at square 1 ... pls help! •Current Attempt <!DOCTYPE html> <html> <head> <style scoped=""> div.generic .button { border: 0px solid #0a3c59; background: #3e779d; background: -webkit-gradient(linear, left top, left bottom, from(#65a9d7), to(#3e779d)); background: -webkit-linear-gradient(top, #65a9d7, #3e779d); background: -moz-linear-gradient(top, #65a9d7, #3e779d); background: -ms-linear-gradient(top, #65a9d7, #3e779d); background: -o-linear-gradient(top, #65a9d7, #3e779d); background-image: -ms-linear-gradient(top, #65a9d7 0%, #3e779d 100%); padding: 12.5px 25px; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -webkit-box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 0px 0; -moz-box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 0px 0; box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 0px 0; text-shadow: #7ea4bd 0 1px 0; color: #06426c; font-size: 24px; font-family: helvetica, serif; text-decoration: none; vertical-align: middle; } .button:hover { border: 0px solid #0a3c59; text-shadow: #1e4158 0 1px 0; background: #3e779d; background: -webkit-gradient(linear, left top, left bottom, from(#65a9d7), to(#3e779d)); background: -webkit-linear-gradient(top, #65a9d7, #3e779d); background: -moz-linear-gradient(top, #65a9d7, #3e779d); background: -ms-linear-gradient(top, #65a9d7, #3e779d); background: -o-linear-gradient(top, #65a9d7, #3e779d); background-image: -ms-linear-gradient(top, #65a9d7 0%, #3e779d 100%); color: #fff; } .button:active { text-shadow: #1e4158 0 1px 0; border: 0px solid #0a3c59; background: #65a9d7; background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#3e779d)); background: -webkit-linear-gradient(top, #3e779d, #65a9d7); background: -moz-linear-gradient(top, #3e779d, #65a9d7); background: -ms-linear-gradient(top, #3e779d, #65a9d7); background: -o-linear-gradient(top, #3e779d, #65a9d7); background-image: -ms-linear-gradient(top, #3e779d 0%, #65a9d7 100%); color: #fff; } </style> </head></html> Thank You
×
×
  • Create New...