[Solved] Button with rounded bottom border [closed]

You should post the code what tried so far. Any way try this one. body { background-color: #333; text-align: center; padding-top: 20px; } button { background: beige; border-radius: 3px; box-shadow: 0px 5px 0px maroon; border: 0; color: #333; font-size: 17px; padding: 10px 30px; display: inline-block; outline: 0; } button:hover { background: #eaeab4; box-shadow: 0px 5px … Read more

[Solved] I Want a Search Box With a Button Where I Can Copy Any Of The Image URL And I Want That Image To Be Displayed On The Same Web Page

<!DOCTYPE html> <html> <body> <input type=”search” id=”linkit”> <button onclick=”searchPic()”>Search Image</button> <div> <img id=”myImage” src=”” style=”width:100px”> </div> <script> function searchPic() { searchValue= document.getElementById(‘linkit’).value; alert(searchValue); document.getElementById(‘myImage’).src = searchValue; } </script> </body> </html> copy and paste any Image Url given below or any valid image url for testing https://placeimg.com/640/480/any http://via.placeholder.com/350×150 1 solved I Want a Search Box With … Read more

[Solved] How to create this border styles in HTML/CSS? [closed]

Following is a sample (Note that Samples are not complete answers and so my answer is) ,see this, Learn CSS basics The following code will give you the result you want though. //HTML <table style=”border:none;”> <tr> <td>Corporate Finance</td> </tr> <tr> <td>Derivatives</td> </tr> <tr> <td>Economics</td> </tr> </table> // CSS table { border-spacing: 5px; } table, th, … Read more

[Solved] I want to do a Web Slide Transaction [closed]

jQuery is the easiest with flash but with keyframes in css3 with no flash are your choices. Example code : <html> <head><title>Slide transaction</title><head> <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js”></script> <script> $(window).ready(function(){ $(“#btn”).click(function(){ $(“.slide1”).animate({ width : ‘toggle’ },1000,function () { $(“.slide2”).animate({ width : ‘toggle’ },1000);}); }); }); </script> <style> .slide1 { background-color : yellowgreen; width:100%; height : 250px; display : … Read more

[Solved] CSS Propertie change OnClick [closed]

Here’s an example of an onclick event for the one element, which will change its z-index. $(function(){ $(“#one”).click(function(){ $(this).css(“z-index”, 2); }); }); From this you should be able to work out how to do the rest. If not, then look into the use of jQuery more. We’re not here to do the work for you. … Read more

[Solved] How to make scroll menu? [closed]

You hadn’t imported jQuery library. In online tesing environments, like JSFiddle and CodePen, adding <script src=”https://stackoverflow.com/questions/31142083/sth.js”></script> won’t work as they have separated HTML, JS and CSS into separate “consoles”. You have to use the menu to import external libraries. https://blog.codepen.io/documentation/editor/adding-external-resources/ Your edited CodePen // Create a clone of the menu, right next to original. $(‘.menu’).addClass(‘original’).clone().insertAfter(‘.menu’).addClass(‘cloned’).css(‘position’,’fixed’).css(‘top’,’0′).css(‘margin-top’,’0′).css(‘z-index’,’500′).removeClass(‘original’).hide(); … Read more

[Solved] HTML table not rendering as expected

There’s nothing wrong with the alignment of the row. What are misaligned are the two tables inside the rows. Compare: <!–START OF EMAIL BODY –> <table cellpadding=”0″ cellspacing=”0″ border=”0″ width=”600″ align=”center”> <!– LOGO AND SOCIAL MEDIA –> <table cellpadding=”0″ cellspacing=”0″ border=”0″ width=”600″ bgcolor=”#FFFFFF”> One of them is centred. The other is left aligned. solved HTML … Read more

[Solved] How to make css style on Google custom search engine [closed]

<div class=”messagepop pop”> <script> //Google Custom Search Engine Code </script> <gcse:search> </gcse:search> </div> .messagepop input{ border: none; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; outline:0; height:55px; padding: 5px; } .messagepop input{box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.34), -15px -14px 0px rgba(255, 255, 255, 1), 18px -55px 0px rgba(255, 255, 255,1), 33px -6px 0px rgba(255, … Read more

[Solved] Changing background-color of fixed block at every new screen

You can change the background color of that fixed div by using the index or anchorLink option in fullpage.js. To change the css you can use onLeave() or afterLoad() method to call the function $(document).ready(function() { $(‘#fullpage’).fullpage({ onLeave: function(anchorLink, index) { //using index if (index == 1) { $(“.fixed”).css(“background-color”, “black”); } if (index == 2) … Read more

[Solved] Get css class list from style tag

Below code helped me getting my requirement. var resultarray = []; var a = $(‘#pageStyleCss’).html(); if (a != undefined) { while (a.indexOf(‘{‘) != -1) { resultarray.push(a.substring(0, a.indexOf(‘{‘))); a = a.substring(a.indexOf(‘}’) + 1); } } var i, option = “<option value=””></option>” for (i = 0; i < resultarray.length; ++i) { if (resultarray[i].indexOf(‘.’) > -1) { option … Read more

[Solved] I want calendar to appear when pressed on my date textfield and the user should be able to select date from that calendar [closed]

HTML5 browsers have built-in support for date pickers. To do what you are asking you only need to change the type of your input field to date. Like this: <input id=”date”type=”date” name=”text” class=”input”> solved I want calendar to appear when pressed on my date textfield and the user should be able to select date from … Read more

[Solved] My Javascript not working?

There is an error in your developer console because as Ghostrydr says your syntax is wrong. You are missing a “.” before focusout like this: $(function(){ $(‘.inputForm .inputbox input’).focusout(function(){ var text_val = $(this).val(); if(text_val === “”) { $(this).removeClass(‘has-value’); } else { $(this).addClass(‘has-value’); } }); }); Fiddle: http://jsfiddle.net/7vmzzhea/18/ 1 solved My Javascript not working?