I was delighted to discover that Android 2.2 supports the position:fixed CSS selector. I've built a simple proof-of concept, here:
http://kentbrewster.com/android-scroller/scroller.html
... which works like a charm. When I attempt to add an INPUT tag to my header, however, I hit trouble. On focus, every device I've tried so far clone...
I need to parse an HTML document to extract all the H1 tags and all HTML between them. I have been playing with HtmlAgilityPack to achieve this with some success. I could extract all H1 tags using:
foreach (HtmlNode node in doc.DocumentNode.SelectNodes("//h1"))
But how do I extract all the HTML after every H1 tag until I hit the next H...
I have a project and this project includes a module about web page html and css properties. I have to get all the html tags and their relative css properties and values in a hierarchical way like FireBug.
What i mean may be more understandable if i show a pic:
How can i retrieve css properties of html selectors of a web page like the...
I often get confused with the href attribute, the link tag, and the base tag. I'm unsure how to properly link the CSS file so a file can be moved into a subfolder and still work (example later on) so I went ahead and found out how the href works when specifying a location.
For your knowledge, I'm working with my localhost, so I have the...
Hi there,
I'm building a page full of hyperlinks which are gotten from querying a content management system, so the number of links is variable.
The requirements need me to display all the links over 3 columns and make it look presentable.
So at the moment I've got myself a Map<Category, Hyperlink> and when I display it at the moment ...
Do we put pagination links in html lists like for instance we do it with navigation links?
...
Hi there
I found a vertical menu but I'm having some problems with it, i can't navigate properly in the submenu because i miss the menu when i move down.
Here I leave the website www.timetarget.com/newsite
please any help or comments will be help me .
Cheers
...
I often see this doctype declaration on some pages that I am viewing
<!DOCTYPE html>
I made some soft research and this is HTML 5 doctype declaration. Modern browsers can interpret this and would force to operate on Standards Mode.
My question is, some of my target users are still using IE6. How will IE6 responds when I declare suc...
The task: present a series of images on a corporate intranet web site to users for viewing.
I hacked together some javascript to show the list of images with thumbnails, and each image is clickable and takes you to the large image, but then you have to hit back to go to the next image, and I'm being asked to provide some next/previous f...
Hey Stack Overflow community!
Our Group is trying to create a slide-out option panel for products to be sold on our site.
For some reason, CSS is acting up on us and it's a pain to get our images to layer properly. In the past, z-index did the trick, but now we have to test random stylings and workarounds just to get remotely what we'r...
I seem to have hit a wall with this layout issue:
I've got a specifically positioned <div id="content"> with a <ul id="grid"> inside of it. Each <li> of the grid has an <a> with an <img> in it (thumbnails), linking to the larger image. This forms a decent image grid, flexible in size as the <li> elements wrap in smaller window sizes. Pr...
I have an asp DataList as follows.Here I am having a Checkbox and i need to input a number for the corresponding textbox,if I clicked the checkbox.How can I validate it. If I clicked a checkbox I must enter some value(int) to the textbox. Need to validate only for those clicked.Thanks in advance !
<asp:DataList ID="dlstEnergyItems"...
i am trying to get my site to auto center a div that has a bunch of divs inside of it on the page by using a set width and defining a margin of 0 auto; if i set my inner div elements to absolute positioning everything lines up properly but it doesn't auto center, but if i set the positioning to relative the inner divs stack on top of eac...
I have written the following code to place the image path into sql server 2005 but its not working is their any alternate way to place images into sql server from clientside application.
example.html
<form id="addresslistingform">
<fieldset id="fieldset1"><legend>Address for listing</legend>
Zipcode:<...
Hi everyone,
I have a table which has the information of a category, say a product. I have listed them in a dropdown menu. Now, what I need to do is, list the sub category of the selected category in a next dropdown menu. I hope, javascript is required, but I am not that familiar with javascript yet.
Would be much thankful for the help...
i have 5 elements in my array
& in my html there are six div's
when the loop goes for sixth element and the corresponding element is not present in the array, then the div should be hidden otherwise it should be visible
The problem i am facing with my current code is that even sixth element is not there, it is showing div as visible,
...
I've been trying to get background images working in my Email HTML and have had no luck. I'm using Outlook 2007 to test my HTML code.
My method is:
Create my .htm file
Save it in %appdata%\Microsoft\Signatures
Create a New email and set that HTM file as my signature
So far, all my attempts at adding a background image have failed an...
I am using the following HTML:
<p><a href="http://www.example.com/">&larr; Back</a></p>
To create the following:
Back
Problem is, the left arrow is not vertically aligned in the middle. It appears to be at the lower 3rd.
Question: how do I get the left arrow to be aligned vertically in the middle (of the letter "B") using C...
Hello all,
Can anyone brief me the difference between Component object Model and Document Object Model and Elaborate what they are and how to use them
thanks a million
...
We have a web application that is well established and has a few hundred screens. Some clients on slow connections are annoyed that when they submit a page, or when a page is loading, there's no indication that anything is happening (the cursor just remains a pointer).
This particularly seems to be an issue on Firefox ... which NEVER s...