[Solved] CSS Image Effects

There are several way to create this, one is to use 2 images, one by default another on hover from css, the text can stand inside the div holding the image. If it is not responsive, it will look something like this: .image{ position: relative; height: 300px; width: 300px; } .image:after{ position: absolute; z-index: 1; … Read more

[Solved] How to demonstrate my SASS skill? [closed]

I think if you understand the basics listed in the Sass website you are pretty much ready to go 🙂 http://sass-lang.com/guide To demonstrate your knowledge do some demos or websites using Sass and show the code to an employer. solved How to demonstrate my SASS skill? [closed]

[Solved] display login pop up

your html and css tweaked to achieve your final lookup. check below @import url(http://fonts.googleapis.com/css?family=Roboto); /****** LOGIN MODAL ******/ .loginmodal-container { max-width: 350px; width: 100% !important; background-color: #eceff6; margin: 0 auto; border-radius: 6px; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); overflow: hidden; font-family: roboto; border:8px solid; border-color:rgba(0,0,0,0.5); } #popupHeader { background-color:#3c5899;padding:5px; margin-bottom:25px; } .loginmodal-container form{padding:35px;} … Read more

[Solved] HTML / CSS unwanted margin [closed]

This issue which was causing the overflow was the display: inline-block which was added to the .gameDiv. Simply remove this CSS rule and you will get what you’ve asked for. 1 solved HTML / CSS unwanted margin [closed]

[Solved] Difference in output of a responsive website

you need to add meta tag in your head section <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <!DOCTYPE html> <html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en-gb” lang=”en-gb” dir=”ltr”> <head> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <link rel=”shortcut icon” href=”https://stackoverflow.com/templates/sb_powerplumb/favicon.ico” /> <link rel=”icon” type=”image/ico” href=”https://stackoverflow.com/templates/sb_powerplumb/favicon.ico” /> <base href=”http://www.powerplumbhydronicheating.com.au/” /> <meta http-equiv=”content-type” content=”text/html; charset=utf-8″ /> <meta name=”keywords” content=”hydronic heating, hydronic … Read more

[Solved] DIV background color change when Hover

Try this to get you started, and keep in mind that inline styles override css: <a href=”https:/doltesting.000webhostapp.com/pageTwo.php”> <div class=”secondSection”> <p class=”hoverTwo”> <br><br><br> SOME TEXT <br><br><br> </p> </div> </a> With this in your css: .hoverTwo { background-color:lightblue;color:green; } .hoverTwo:hover{ background-color:yellow;color:black; } solved DIV background color change when Hover

[Solved] Adding “active” class/id to table style navigation based on url

*first of all, you don’t build menu with <table>. if you need regular menu (not drop down menu) you can use for example: HTML: <div class=”MenuTable”> <a href=”http://www.partsmasterusa.com/”><i class=”fa fa-plus-square”></i> Main</a> <a href=”http://www.partsmasterusa.com/about/”><i class=”fa fa-building”></i> About</a> <a href=”http://www.partsmasterusa.com/part-inquiry/”><i class=”fa fa-info-circle”></i> Part Inquiry</a> <a href=”http://www.partsmasterusa.com/search/”><i class=”fa fa-search”></i> Search</a> <a href=”http://www.partsmasterusa.com/cart/”><i class=”fa fa-shopping-cart”></i> Cart</a> <a href=”http://www.partsmasterusa.com/checkout/”><i class=”fa … Read more

[Solved] how to fix header and footer in php file

try this., <div id=”header”> <?PHP include_once(‘header.php’);?> </div> <div id=”wrap”> welcome to index file </div> <div id=”footer”> <?PHP include_once(‘foo.php’);?> </div> css: #header{position:fixed;top:0px;} #footer{position:fixed;bottom:0px;} or header.php <div id =”header”></div><div id=”content”> footer.php </div><div id=”footer”></div> index.php <?PHP include_once(‘header.php’);?> content here., <?PHP include_once(‘footer.php’);?> 1 solved how to fix header and footer in php file