Which CSS attribute, if any, would control this?
I have the following list: How can I get the fourth item's text to wrap around but indent at the same level as the rest of the list? Is there some CSS attribute that controls this? ...
I have the following list: How can I get the fourth item's text to wrap around but indent at the same level as the rest of the list? Is there some CSS attribute that controls this? ...
I have a CGI application in C that creates an html page by saving a char* as a html page: void saveTextFile(const char *filename, const char *str){.......} called as saveTextFile("..\\index.html",outputFile); How do I use zlib to take as input the "outputFile" char array and output a zipped html page with appropriate headers? Wo...
So I'm using CSS :hover to replace a submit button background. When I mouse over the button the old background image disappears (so it looks like nothing is there) for a moment and then reappears with the new background. I thought that perhaps the button image file size was too large but its only 1.4kb. Is there a way to prevent this,...
First off, I'm a PM and the dev team is already mad at me. So I'd like to take a shot creating the solution to the question below. We have a static maintenance mode html page that displays "Please check back soon" in 24 languages. Right now we are displaying all 24 translations at once and the page is pretty ugly. I've wrapped each t...
Hi, I am having trouble positioning a (div) element at the top right of a span. It works in FF3, but not in IE7: <html> <head> <style> body { font-size: 24px; } .tag { padding: 3px; background-color: lightblue; position: relative; } .x { position: absolute; top: 0px; right: 0px; width: 10px; height:...
I have inherited an ASP.net codebase and I have very limited ASP.net skills. I am struggling to understand why something works and also why it only works in IE. The following code appears in a page :- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="map.aspx.cs" Inherits="Romtrac.auth_map" Culture="auto" UICulture="auto" %> <!DO...
Is the main purpose of sprites to reduce http requests made to the server for graphical elements on a page? Or do you want to try and fit as many elements to the sprite as possible. I guess what I'm asking is: when is the sprite too large? ...
It has worked for over a year and started opening in a new window. I am not aware of anything changing. I made it following the guide at Stunnware. The code in the page is: <html> <head/> <body class='stage' onload='resultRender.submit()'> <FORM id='resultRender' method='post' action='/ALI/AdvancedFind/fetchData.aspx' target='resultF...
Hi All, I am making cosmetic changes to a website but I am only able to change the CSS not the aspx. I want to move an image that is inside a cell in a table set into the page by about 100/100px back to 0/0px. The tag has got a unique id I can get at it with however the table's id is not unique and setting a background image on the t...
Hi, So I have two divs. One left div with navigation links and one right div that populates with content depending on what link you click on the left. I would like to have a vertical gray line between the navigation and the content separating the two, but I need it to change in height depending on how long the right side content div is...
I have inherited some HTML code and have been asked to align the two tables so the text lines up between the two columns. There is an outer table that provides a two-column look to this thing, then two inner tables (one for each column). Each inner table contains boxes that hold text. It is these boxes of text that the client wants alig...
Typically I style forms with the unordered list tag e.g. <fieldset> <ul> <li> <label for="txtName">Name</label> <input type="text" id="txtName" /> </li> </ul> </fieldset> However, often I see markup that uses the <p> tag instead, like so: <fieldset> <p> <label for="txtName">...
I have a searchbox with auto-suggest that pops a div up underneath it with multiple search string suggestions (like google). Is it possible to have drop shadow on the auto-suggest box with CSS or will I need a script of some sort? I tried a background image but the number of suggests can vary from 1 to 10 or 15. I'd prefer something t...
Hello, So I have a html page(actually generated with php), that will make a popup window containing a form. All my javascript stuff is in a seperate javascript file. I want to know if it is possible to call a function from my javascript file from the form resulttext. Here is the first html page <script type="text/javascript" src="x.js...
Is it possible with javascript, and without using a framework such a jquery, to have a simple form with a a list of checkboxes or radio buttons, and if a particular one is selected, expand to show further further checkboxes/radio buttons? ...
Duplicate: What should a developer know before building a public web site? I have been asked to make a website for a county fair. I used to make websites (they all sucked). I want to make this one using HTML, JQuery, and any other tools you guys recommend. I'm still a beginner when it comes to websites though, for example I didn'...
I'm using the jQuery Star Rating plugin on an ASP.NET MVC site, and I can't get it to work with split stars. As best I can tell, I'm creating the proper radio buttons. I've tried using both the RadioButton helper method and pure HTML, and I've also tried with and without disabled inputs (on this particular page, I intend to use disabled)...
I'm trying to reconcile the various Adobe AIR HTML guides, and am totally lost. I want to do something with a socket. Some general guides on the topic here and here refer to Air.Socket(); But the supposedly Adobe AIR HTML reference looks like it's not even JavaScript and it references a namespace (window.runtime.flash.net.Socket) that ...
I have some problem where i set 2 floated div elements, one of div contain select element, when the page loaded the divs didn't have the problem, but as soon i click on of the element(s) on select box, the div that positioned in right shift to bottom? Here some example code about what i'm talking: #div1,#div2{float:left} #div1{width:2...
Trying to comply with StackOverflow's suggestion of asking a question, not creating a discussion, let us consider these two methods that use the HTTPAsyncRquest to update a web page without refreshing it: 1) Data returned by AsyncRequest is parsed/interpreted in order to build the resulting HTML that updates the page e.g. JSON::parseAn...