[Solved] I desperately need somebody to help me make my CSS slider autoplay

Since you have no markup to offer, I’ve created this: Example snippet (pure css): body { background: #eee; font-family: arial, helvetica, sans-serif; margin: 50px auto; padding: 0; } h1 { font-family: ‘Proxima Nova’, ‘Helvetica Neue’, sans-serif; font-size: 36px; text-align: center; } h3 { font-family: ‘Proxima Nova’, ‘Helvetica Neue’, sans-serif; font-size: 22px; font-style: italic; color: #4e4e4e; … Read more

[Solved] How to create dynamic nested divs within ul li tag using jquery

First, give the ui a id, i choose rootEl <ui id=”rootEl”> </ui> Second, this JavaScript: var rootEl = document.getElementById(‘rootEl’); function appendStuff() { var listItem = document.createElement(‘li’); var videoThumbnail = document.createElement(‘div’); var myImage = document.createElement(‘img’); var videoDesc = document.createElement(‘div’); var videoDate = document.createElement(‘div’); videoThumbnail.setAttribute(‘class’,’videoThumbnail’); myImage.src = “https://stackoverflow.com/questions/28105063/./img6.jpg”; videoDesc.setAttribute(‘class’,’videoDesc’); videoDate.setAttribute(‘class’,’videoDate’); videoDesc.innerHTML = “Lorem ipsum dolor sit amet”; … Read more

[Solved] Funnel chart with bars [closed]

Use clipping with polygon. My polygons go from upper left, to upper right, to lower right, to lower left. I used the css calc function in order to make the offset relative to the end. I did a 40px slant, but if you want more a slant, simply change that number. body { background:black; } … Read more

[Solved] Build frame for page content using CSS [closed]

Except for header background, you won’t need any other images. You can use a div for header with image background and 100% width, another div as the outer “square” with background and border and padding/margin, then div with white background and border radius (http://www.w3schools.com/cssref/css3_pr_border-radius.asp). (You could also do gradient from header background by using css3 … Read more

[Solved] Can’t serve external CSS File in Go webapp

You have to set the Content-Type header in the response correctly. Without the content type, most browsers will not execute the css. Something like the following should work, but this is essentially just a sketch: http.HandleFunc(“/static/”,func(wr http.ResponseWriter,req *http.Request) { // Determine mime type based on the URL if req.URL.Path.HasSuffix(“.css”) { wr.Header().Set(“Content-Type”,”text/css”) } http.StripPrefix(“/static/”, fs)).ServeHTTP(wr,req) }) … Read more

[Solved] i am working on flip image but it’s not working [closed]

I think this is your perfect answer. .flip { height: 199px; width: 300px; margin: 0 auto; } .flip img { width: 300px; height: auto; } .flip .back { background: #2184cd; color: #fff; text-align: center; } <head> <script src=”https://code.jquery.com/jquery-2.1.4.min.js”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/jQuery-Flip/1.1.2/jquery.flip.min.js”></script> <script> $(function () { $(“.flip”).flip({ trigger: ‘hover’ }); }); </script> <script> $(function () { $(“.flip”).flip({ … Read more

[Solved] Should the Bootstrap media queries be saved in a css file or a js file?

Move your style.js css media codes into the style.css CSS media queries are the part of .css extension files. You should not place it some other extension than .css Now a days there are preprocessor tool for css like .less, .sass, .scss you can use them in those extension files as well. <link rel=”stylesheet” href=”https://stackoverflow.com/questions/41377265/style.css” … Read more

[Solved] What is wrong with this CSS background syntax?

The syntax indeed is incorrect. It should be radial-gradient(circle at right center, #ffbb11 0px, #dd6600 100%). This is also incorrect in the CodePen, and once you fix it, the animation looks different (it has a ‘Click here’ call-to-action when you hover it). It is not the core issue, though. The reason why the animation doesn’t … Read more

[Solved] i need an answer please : bootstrap 3 this is for a job applyment?

i found the result my self just for fun ,here the solution: body img { float: left; } body img:nth-child(2n) { float: right; } #content{display:flex;text-align:center;width:100%} .changeme1{ margin-left:auto;float:none; } .changeme2{ margin-right:auto;float:none; } solved i need an answer please : bootstrap 3 this is for a job applyment?

[Solved] set up error message for drop down

Yes. You can acheive that with the combination of PHP and JQUERY Let’s say this is your first page <form action=”secondPage.php” method=”post”> <select id=”men” class=”select_class1″ name=”subselector”> <option value=””>Choose an Item</option> <option value=”tsm”>T-Shirt</option> <option value=”lsm”>Long Sleeve</option> <option value=”tankm”>Tank Top</option> </select> <input type=”submit” value=”submit” /> </form> Then this would be your secondPage.php <?php $subselector = $_POST[‘subselector’]; ?> … Read more

[Solved] Center align image in a div [duplicate]

I’m not sure about why your current code have default text-align: left for div element. But please try this one: http://jsfiddle.net/18230pwa/ div img { display : block; margin : auto; } div { text-align: left; } 0 solved Center align image in a div [duplicate]

[Solved] Only apply classes on small screen sizes

You can always add the classes to the div but have the styling for the classes in the media queries. <nav class=”navbar navbar-expand-sm navbar-light bg-light”> @media only screen and (max-width : 480px) { .navbar-light{/*your style*/} .bg-light{/*your style*/} } 2 solved Only apply classes on small screen sizes

[Solved] White Space Appears Right of Browser Window When at Full Screen [closed]

You have this style on .copyright2 .copyright2{ position: relative; left: 17.5%; } p { width: 100%; } So .copyright2 has width: 100% and start at left: 17.5% To fix it remove left: 17.5% from .copyright2 Here a minimal example to illustrate: .red{ background: red; height: 100px; } .blue{ background: blue; height: 50px; position: relative; left: … Read more