Re: How Build Html form ? Programming Web Development by Dani I'm not exactly understanding your question. I see you have an HTML form here in this HTML code. What is not working about it? You need to specify the action="#" to be a URL that will process the form. Re: How Build video-player in html And css ? Programming by Kirubel_2 …height: 101vh; overflow-y: hidden; } .container button{ background: transparent; color:white; font-size: 20px; border:1px…white; text-decoration: none; } .sidebar ul li:hover{ background: rgb(3, 41, 72); border-radius: 10px; cursor:… How Build video-player in html And css ? Programming by Kirubel_2 …<link rel="stylesheet" href="../css/tutorial.css"> <link rel="stylesheet"…; href="../css/vedio.css"> <link rel="stylesheet"…<li onmousemove="ule()" style="background: #0004;"><a href="paint.… How Build Html form ? Programming Web Development by Kirubel_2 …;sign.css"> </head> <body class="u-body u-overlap u-xl-mode" style="background…-size: 16px; } .close-btn { position: absolute; right: 20px; top: 15px; background-color: #ae4732fe; font-size: 15px; color: white; border-radius: 50… css background image problem Digital Media UI / UX Design by curt22 Why aren't the css background images showing up in the sidebar? [CODE]<!DOCTYPE html …> <style type="text/css"> body, html { margin:0; padding:0; background:#000000; color : #00cc00; } body { min-… Re: CSS background image change on hover Digital Media UI / UX Design by dellmerca CSS .imgBox { width: 191px; height: 191px; background: url(duck.png) no-repeat; } .imgBox:hover { width: 191px; height: 191px; background: url(peng.png) no-…; } HTML <div class="imgBox"> Full Source...[CSS background image change on hover](http://www.corelangs.com… Re: CSS Background Property and IE Digital Media UI / UX Design by richardtj Background url(); width:whateverpx; height:whateverpx; background-repeat:norepeat; The issue with the coding is that the part "background-size:100% 100%;" isn't recognised as correct code by ie. If you're going to stretch the image, you need to declare the size as I have above. Background Image CSS Digital Media UI / UX Design by kcm5052 …the index.HTML which cannot display the CSS background-image in the HEADER DIV. <…> This is the style.css I am working with. body {background: #ffffff; margin: 0; padding…margin: 0; padding: 0; border: 0; float: left; background: #f0e811;} #content { width: 700px; height: 400px; … CSS Background and in line menu not working Digital Media UI / UX Design by REPattinson1 … now my background colour won't show up in any of my HTML pages. Here is my complete CSS sheet that I…'m working from: .body { background-color: #000000; color: #000000; font: 20px… CSS background offset Digital Media UI / UX Design by shiinko … of page. **style.css:** body{ font-size: 62.5%; font-family: Arial, Helvetica, sans-serif; background: url(../images/Header.png…; } #nav{ height: 256px; width: 743px; margin: 0 auto; background: url(../images/Logo.png) no-repeat; } **index.html:** <html… Re: CSS Background and in line menu not working Digital Media UI / UX Design by Sahil89 Check your reference to css file <link href="load.css" rel="stylesheet" type="text/css" /> your path must be wrong. CSS Background Property and IE Digital Media UI / UX Design by Octet … am wanting to stretch an image to act as my background of my website,the only issue is it won't…] <style type="text/css"> body { background:url("Background.jpg"); background-size:100% 100%; background-repeat:no-repeat; padding-top… CSS Background problem Digital Media UI / UX Design by Kellyst …imported into dreamweaver. Added a div tag and created a css style sheet which "wrapped around the selection (my … thing... At the bottom, the last 200 px the background color did not wrap around that selection. So what I… am seeing is a seamless, continuous color from the background I added "wrapped around the selection" and … Re: CSS Background Property and IE Digital Media UI / UX Design by simplypixie Try setting the height of your body to the height of your background image and get rid of the background-size. Though for a set image background I personally would make a wrpper div to fit the body and put the css in their and leave the body to just have margin and padding set at 0. Re: CSS background image only displays with content Digital Media UI / UX Design by macgurl70 … reads like you want the image to be the actual background for the page - if that is the case, why not… just set it as the background? [CODE] body { background-image: url(my_background.jpg); background-repeat: no-repeat; background-position: top left; margin:none… background color to a element which is positioned before the identified tag Programming Web Development by Virangya …, i'm trying to add a background color to a element which is positioned…gt; [/CODE] now i want to assign a background color to the 1st level element if i know …class='identified' i want to cange the background color of [ICODE]<a href='#'>text1… [CODE]$('ul li a.identified').closest('a') .css('background-color', 'red');[/CODE] CSS background image only displays with content Digital Media UI / UX Design by baseballfury … before. I've got a picture as a background which i declare in my css file. The div (wrapper) is 960px wide… wrapper thats 700px wide with the content in it. The background image of wrapper will not display unless i put some… Re: CSS Background Property and IE Digital Media UI / UX Design by sufyan2011 If your backgroug is repeating, then take the 1 pixel image either horizentaly or vertically (depends on your image) and repeate it to X or Y axis accordangily. If not then give the background image height and width in pixel. Re: background color to a element which is positioned before the identified tag Programming Web Development by AleMonteiro Try this one: [CODE] $('ul#one > li:has(a.identified) > a').css('background-color', 'red'); [/CODE] Re: background color to a element which is positioned before the identified tag Programming Web Development by Virangya [QUOTE=AleMonteiro;1752217]Try this one: [CODE] $('ul#one > li:has(a.identified) > a').css('background-color', 'red'); [/CODE][/QUOTE] thanks... how ever i did it by using parent() several times. Re: CSS background image only displays with content Digital Media UI / UX Design by Lusiphur … this scenario. If you're looking for a dynamically positioned background (floating horizontally based on browser width) you will never be… able to achieve background extension beyond the bottom of the page content. The only… CSS background Digital Media UI / UX Design by HLA91 …I was using this CSS template for my site but when I tried to add a background to the navbar …{font: 18px geneva, sans-serif; margin: 0; color: #000; background-color: #FFF} a {text-decoration: none} div#navbar {width: 130px…visited {color: #000} div#navbar a:hover {color: #FFF; background-color: #008000} */ I tried placing the code here */ div#… Re: CSS background Digital Media UI / UX Design by MidiMagic … your html. Try the following: 1. You must define the background image in the stylesheet, not in the html, if you… are not transparent to images. 3. Your change of the background color on hover might not be reversible to display an… Re: Background Image CSS Digital Media UI / UX Design by 10him background:url(../images/1.jpg); use this if your image is in images folder, I think it will work Re: css background image don't show up Digital Media UI / UX Design by fido51 …tried to use absolute path, instead of relative. The background image does not appear at all then. I have… just don’t know what is relevant. Here is the CSS code [CODE]@charset "utf-8"; body {…; /><!--[if IE]> <style type="text/css"> .thrColHybHdr #sidebar1, .thrColHybHdr #sidebar2 { padding-top: 30px;… background image for portrait vs. landscape Programming Web Development by turpentyne … backgorund image on page load $("#full-size-background").css("background-image", "url(images/backgrounds/" …; position:fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-attachment: fixed; height:150px… Re: css background image don't show up Digital Media UI / UX Design by swarnali [QUOTE=Musafir;1122367]This is my CSS code [CODE]body{ background: white url(/image/bg.jpeg) repeat-x center top…image doesn't show up. The image for the background is below [url]http://img704.imageshack.us/img704/…url] Thanks in advance[/QUOTE] try this [CODE]body{ background: url(../image/bg.jpeg) repeat-x white center top }[/… Re: CSS background image change on hover Digital Media UI / UX Design by almostbob … second image for the hover state, you change the background color [code=css].thisstyle {background:url('image.url') #000ff no-repeat; } .thisstyle:hover… {background:url('image.url') #0ff00 no-repeat; }[/code]the selected background color… css background image don't show up Digital Media UI / UX Design by Musafir This is my CSS code [CODE]body{ background: white url(/image/bg.jpeg) repeat-x center top }[/CODE]…;link rel="stylesheet" type="text/css" href="style.css" / </head> <body> …the image doesn't show up. The image for the background is below [url]http://img704.imageshack.us/img704/2162/… CSS Background-color displays in IE but not in Firefox Digital Media UI / UX Design by MandaloreFett7 …;[/CODE] [B][U]This is my CSS:[/U][/B] [CODE]#horizontalnav { width: 1000px; background-color: #71392C; } .navlinks { …underline; } #minihorizontalnav { clear: both; width: 1000px; position: relative; background-color: #71392C; } .mininavlinks { position: relative; left: 164px; font…