[Solved] How can i solve spaces problems?

A better approach, use display: flex;. Note that IE broswer older than IE11 are not supported. http://caniuse.com/#feat=flexbox .row { display: flex; /* equal height of the children */ } .col { flex: 1; /* additionally, equal width */ padding: 1em; border: 1px solid gray; } <div class=”row”> <div class=”col”>Lorem ipsum dolor sit amet, consectetur adipisicing … Read more

[Solved] How to achieve this footer [closed]

Done according to your image, here’s a Fiddle <footer> <span>YOUR AMBITION REALISED</span> <img src=”https://stackoverflow.com/” alt=”Image”/> </footer> footer { background: #722F8E; position: absolute; bottom: 0; left: 0; width: 100%; height: 200px; } span { display: block; float: left; margin: 140px 0 0 70px; font-family: Tahoma; font-weight: bold; font-size: 18px; letter-spacing: 1px; color: #fff; } img { … Read more

[Solved] jquery toggle not clickable

I would suggest using classes that make more sense, like this… <div class=”menu”> Menu <div class=”submenu”>Sub-Menu</div> </div> Then your jQuery is simply… $(‘.menu’).click(function(e){ $(this).find(‘.submenu’).fadeToggle(); }); // If you don’t want your sub-menu to trigger the toggle, add this: $(‘.submenu’).click(function(e){ e.stopPropagation(); }); 3 solved jquery toggle not clickable

[Solved] I want to change the css of a page on a the click of a link [closed]

You can do so by using .css() function of jQuery. $(function() { $(“#myAnchor”).click(function() { $(“#someDiv”).css(“color”, “yellow”); }); }); <!DOCTYPE html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> </head> <body> <a href=”#” id=”myAnchor”>Click here </a> <div id=”someDiv”> Hello World </div> </body> </html> Working DEMO here solved I want to change the css of a page on a the click … Read more

[Solved] css3 way to create design dashed box [closed]

Try to realize it with two DIV boxes <!DOCTYPE html> <html> <head> <style> #outside { width:400px; height:150px; border-style:dashed; border-width:3px; position: relative; } #inside { background-color: white; width:404px; height:154px; position: absolute; top:-2px; left:-2px; } </style> </head> <body> <div id=”outside”> <div id=”inside”> </div> </div> </body> </html> http://jsfiddle.net/RH5R3/ 5 solved css3 way to create design dashed box [closed]

[Solved] How to make a div fixed

I have edited your code try this one <style> #myiput{ position: -webkit-sticky; position: sticky; top: 0; padding: 5px; } </style> <table> <tr> <td> <div> <input id=”myinput” type=”text”> <table> <tr style=”display: none;” > <td> hidden row 1 </td> </tr> <tr style=”display: none;” > <td> hidden row 2 </td> </tr> <tr style=”display: none;” > <td> hidden row … Read more

[Solved] Close Modal box after 5 seconds

Your code is a missing quote. but you can use my code below as documentation define. Update your code setTimeout(function(){ $.modal.close(); }, 5000); Read this: https://github.com/kylefox/jquery-modal#closing solved Close Modal box after 5 seconds

[Solved] HTML css – width of element than 100% width

Doing it html + css only, you need to wrap each line in a div, like .gray-container { display: flex; flex-direction: column; width: 100%; background: red; } .line { display: inline-block; position: relative; } .tooltip { display: inline-block; position: absolute; background: black; width: 30px; height: 20px; margin-left: 10px; } <div class=”gray-container”> <div class=”line”><input type=”radio”>None<div class=”tooltip”></div></div> … Read more