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. How Build Html form ? Programming Web Development by Kirubel_2 <!DOCTYPE html> <html style="font-size: 16px;" lang="en"><head> <title>Comment</title> <script src="js/jquery.js"></script> <link rel="stylesheet" href="sign.css"> </head> <body … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c -f foo.tar.bz2 foo_1.txt foo_2.txt… Re: z-index Digital Media UI / UX Design by Troy III z-index:0; is equivalent to: unspecified / invalid / value failed to be assigned, etc, etc. div1 > z-index:0 -will be covered by div2 > [no index specified] Re: z-index Digital Media UI / UX Design by Alicera Nz z-index:-1; Re: z-index problem Digital Media UI / UX Design by MidiMagic z-index is not well supported. Z-index in IE, Any fixes? Digital Media UI / UX Design by jonsan32 I'm trying to add a floating menu that spans 100% and sticks to the top of the page, but the content that's meant to flow behind the menu keeps going to the front in older versions of IE. I notice Forbes.com fixes this issue by having their "sticky" menu just disappear and scroll up in IE http://www.forbes.com/home_usa/ I wouldn't mind … Re: Z-index in IE, Any fixes? Digital Media UI / UX Design by jonsan32 OK, some more research has proven to me that the more pertinent question might be HOW CAN I MAKE MY NAVMENU DIV SCROLL INSTEAD OF STAY WHEN VISITORS USE IE. http://www.usatoday.com/tech/ does this, as well as the Forbes site I mentioned earlier. I presume there is no answer for making the z-index higher, but how can I implement their scrolling … Z-index issue Digital Media UI / UX Design by hindu times Hi there, I'm currently building a storefront for the following site: www.rjthompsonmusic.com/store/store2 I'm having a little trouble with the z-index of the dropdown menu (when you hover over HOME of MUSIC in the store). I've set the z-index of the menu to 1000 which works fine in IE8, Safari, FF, and Chrome, but it still displays behind part … z-index issues in Safari and Chrome Digital Media UI / UX Design by IllBeTheJudge Hello I have been looking around for a solution to my problem but I don't seem to have hit the right one. Not sure really whether this is a jQuery issue either, as opposed to an html / css one, but here goes: Simply put, I have a navmenu whereby I am using a jQuery plugin (called spasticnav ... can't say I like the name, but there you go) and… Z-index or postioning problem on topnav in IE - works ff & saf Digital Media UI / UX Design by spookies Hi I cannot seem to get a div to sit above a parent div for my top nav - it works in FF and Safari but not IE. I have adjusted z-index and also tried various positioning but no joy. Any advice welcome. [URL="http://www.firefuel.co.uk/a"]http://www.firefuel.co.uk/a[/URL] CSS ==== [CODE] #topnavbg { position:absolute;… Re: Z-index or postioning problem on topnav in IE - works ff & saf Digital Media UI / UX Design by spookies Hi there Ive just managed to pick up your replies and experiment, thankyou both for taking the time to have a look. However It's not working for me. Gutted! I thought about your suggestion Macneato but i couldn't work it out as the home tag deals with the overall BG repeating gif, then there is the div that deals with the gif that has the … Z-index nightmare in FireFox Digital Media UI / UX Design by Lleoun Dear all, I have the following in a web page: A menu (let's call it Menu1) with several links and by its side another menu (Menu2) with some links also. Menu2 is a drop down menu that drops down on top of Menu1 when you click the Menu2 button. Well, it works for Internet Explorer but not for Firefox. The problem: when I try to click on Menu1… z-index (and css) and IE6? Digital Media UI / UX Design by Violet_82 Hi there, I am having some problems with my site displaying correctly in IE6. In particular if you have a look at this page in IE6 [url]http://www.antobbo.webspace.virginmedia.com/photogallery/water.htm[/url] the script doesn't seem to be working the way it should, and I think it might be a problem with the css and the z-index. Here's the script … Re: z-index NOT working :( Digital Media UI / UX Design by HoneyBadger well guys I KINDA got it to work.... everything is in it's proper place. but I had to use negative numbers in the z-index. Which in tuns means I have huge scroll bars for empty space. why did adding negative z-index cause large empty spaces to appear? Here's my new code: [CODE] <html> <head><TITLE>This is … z-index with images Digital Media UI / UX Design by optikali I am trying to put up a rope border (border.png) on the sides of my center box of text. Text will work with z-index properly, but the border just will not show. Any ideas? style.css = [CODE]* {margin:0px;padding:0px;top:0px;left:0px;} body{ text-align: center; background: #000000; } #central{ margin-right: auto; margin-left: auto; … Re: z-index with images Digital Media UI / UX Design by Troy III [QUOTE=optikali;1012076]I am trying to put up a rope border (border.png) on the sides of my center box of text. Text will work with z-index properly, but the border just will not show. Any ideas? style.css = [CODE]* {margin:0px;padding:0px;top:0px;left:0px;} body{ text-align: center; background: #000000; } #central{ margin-right: auto;… Re: z = x * y ; from console to form window Programming Software Development by mrnutty You need proper includes. [code] #include <iostream> using namespace std; int main(){ int x = 0; //initialize variables int y = 0; //initialize variables int z = x * y; //calculate z cout << "Z = " << z << endl; //print out the variable 'z' return 0; } [/code] z-index NOT working :( Digital Media UI / UX Design by HoneyBadger Guys I creating a layout with several different pictures. but when I put them on the site they stack on top of each other. They should be in their respective places on the layout. Instead when I load them, they bunch up in the middle one of top of the other. I tried using the z-index(see code below) but I can't get it to work. Here's my code: [… z-index Digital Media UI / UX Design by davy_yg index.php <div style="width: 220px; color: black; margin: 0 0 0 800px; z-index: 2;"> <?php // How can we help $result = mysql_query("SELECT * FROM `static_page` WHERE post_id='27'") or die(mysql_error()); echo '<td>'; while ($data = mysql_fetch_array($result… Re: z-index Digital Media UI / UX Design by Troy III even W3schools got this right: > "Note: z-index only works on positioned elements (position:absolute, position:relative, or position:fixed)." [!note] Your z-index:2 div element has no position. Further on, "z-index: 0", (used on your second div) is not a valid z-index css value. Should be a non-zero positive integer or … Re: Z-index nightmare in FireFox Digital Media UI / UX Design by MidiMagic You can have the focus on only one layer at a time. To fix it, get rid of the idea of putting one thing on top of another. Note that the z-axis is not universally implemented yet. Don't rely on it. Note that in FF and in xhtml, the <!-- --> tags comment out the stylesheet. Do not use them any more. Re: What Z-Index Digital Media UI / UX Design by rajarajan2017 Z- index is nothing but a stacking order. The order of elements to be placed. For that you can set the zindex. An good example is Website menus goes behind flash or images. Below is the example to clearly identify the purpose of zindex [CODE]<html> <body> <div id="myDiv" style="position:absolute;… Re: z-index Digital Media UI / UX Design by almostbob below is not correct, w3c documentaton specifies 'integer' which includes zero, zero is defined as the default base, so the declaration `<div style="margin: -250px 0 0 730px; position: relative; z-index: 0;">` is correct, but inline styles suck and should be removed to stylesheets > Further on, "z-index: 0", (used on … Re: z-index Digital Media UI / UX Design by almostbob http://www.w3.org/wiki/CSS/Properties/z-index > The stack level of the generated box in the current stacking context is 0. The box does not establish a new stacking context unless it is the root element. and http://www.w3.org/TR/CSS2/visuren.html#propdef-z-index > In the following example, the stack levels of the boxes (named with their … z = x * y ; from console to form window Programming Software Development by kucing [code] 1: int main() 2: { 3: unsigned short x; 4: unsigned short y 5: ULONG z; 6: z = x * y; 6: return 0; 7: } [/code] Please ... i got to many error. When I want z value to write in Textbox form window. Just like var or data from console to form window How var or identifier seems undeclared in form window with namespace . Re: z-index problem Digital Media UI / UX Design by autocrat Just a quick guess, but you may find it's the classes. If I'm correct, you have multiples of these "image pop-ups", all with the same classes. so if you think about it, you have multiple little boxes with popup layers, all basically overlapping each other. The problem occurs for the Popups though... You have applied a z-index to… Re: z-index NOT working :( Digital Media UI / UX Design by weekendrockstar What browsers have you tried? IE tends to have similar problems with z-index. If the problem occurs in other browsers I am not positive what the cause would be. Re: z-index Digital Media UI / UX Design by almostbob run the css of a `div {z-index:0;}` through the [w3c css validator](http://jigsaw.w3.org/css-validator/#validate_by_input) if you care to. Re: z-index Digital Media UI / UX Design by almostbob Troy, "unspecified", is not zero "unspecified" inherits the parent element z-index, any integer value including zero please stop fabricating information