Hi
I have this CSS code :
#d_image {
float: left;
width: 320px;
margin-top: 20px;
margin-left: 25px;
}
#d_coll {
width: 320px;
float: left;
}
#n_div {
width: 240px;
text-align: right;
padding-top: 10px;
float: left;
padding-right: 10px;
padding-left: 0px;
}
#n_text {
text-align: ...
I have images on my page. User can add more images onto the page by clicking a button. New images are added asynchronously. Initially, each image on page use a special class to be used when the image is loaded. After the image is loaded, that class is removed.
Each image being loaded has the class imageLoading:
<img class="imageLoading"...
I have a wizard with 4 steps and in one of the steps, you can add items. By default, there are 3 time 5 empty input-fields listed. When you click a button, there have to be added some more. The 3 times 5 fields are added by a loop.
How can I determine where I have to add some fields (in the first 5 field of the second or the third). I c...
What is the preferred way to display an anchor that doesn't need an href attribute (because it's only used in javascript)?
For example, <a href="#">example 1</a> vs. <a href="javascript:;">example 2</a>.
...
Hello,
I want to add a gradient background to my web page (the area marked with yellow border is where the actual content is displayed) and I want it to take just 1/2 of the page (the bottom part):
I believe this is possible with CSS, but so far I have only managed to get a gradient background (taking the whole height of the page).
T...
How do I find if a string contains HTML data or not? The user provides input via rich:editor component and it's quite possible he could have used either a simple text or used HTML formatting.
...
I have no code to start with.
I want to add 2 divs overlapping on each other and then use the new CSS3 Rotate function. The effect I want to create is shown on this page
Requirements
I don't want to use images
I don't mind using CSS3
It should be easy to align the whole thing in the center (which makes it harder to use position: abso...
I need to let users select an item from a dropdown list, but also allow them to instead enter any text, even if it doesn't match an item in the list. How can I achieve this on a web page with HTML and Javascript?
The select field doesn't let users enter text, and the input text field doesn't show the preferred alternatives.
All items m...
Hello there, this is a problem I'm currently facing :
I've made a
<select id="nationalityArea.id" tabindex="6" name="nationalityArea.id">
<option value="null"></option>
<option value="619">Îles Cook</option>
<option value="646">Îles Féroé</option>
<option value="625">Îles Salomon</option>
<option value="598">Îles Vierges Américaines</...
Hi All,
I m Using submit button for my form its work fine in all browser except ie7
when an user click on it it moved please suggest me what to do
.confirm-button-submit
{
width : 79px;
font : bold 12px sans-serif;;
color : #000;
background : url("../images/confirm-btn.png") 0 -33px no-repeat;
te...
Hi all
Can anyone recommend a good, free link checker to check all pages within a domain? Ideally a browser add-on or a web app (otherwise something that runs on OSX).
Crucially it needs to follow links recursively within a domain. Links outside the domain should be followed to a depth of 1, but not checked recursively.
This is for th...
I've been learning (X)HTML & CSS recently, and one of the main principles is that HTML is for structure and CSS for presentation.
With that in mind, it seems to me that a fair number of images on most sites are just for presentation and as such should be in the CSS (with a div or span to hold them in the HTML) - for example logos, heade...
Hi,
Sorry if this question has already been answered, and sorry if it's too subjective to make sense, or for StackOverflow.
I'm delivering a site to a client and I want to send them high-quality HTML/CSS/JS, fully validated, accessible etc.
So I'm compiling a list of things to check, and useful tools for doing so, before I hand the c...
I have a small application built using Seam 2.2, Richfaces 3.3, JBoss 5.1.
Most of the page navigation adds the request parameters to the target URL. I would like to hide parameters to be hidden to the customer who is using the application (e.g. I would expect the URL to be something like "http://localhost:8080/books/Book.seam". The par...
Hi,
Let's imagine you have an asp.net page in front of you full of input elements, user controls and panels etc. And you are asked to modify a specific textBox and you do not know where that textBox stands in your project.
Most of the time I use FireBug and try to see the Id of that element but it is not the best way all the time.
So...
Hi,
I need to send HTML emails directly from oracle PL/SQL package. This works almost fine.
I have problem with the fact that some of the data fetched from a table contain things like <S>, <L>, and similar fragments, which sometimes ar treated as HTML tags, and even if not, they are always ignored and never displayed.
So, I need to e...
All I want to do is allow the user to browse through their folders to look for a file, select it and then press submit which saves the file to my server as well as the path to the saved file.
How would someone do this? (Some sort of tutorial website would help a lot)
...
I want to create table only using tag and CSS.
This is my sample table.
<div class="divTable">
<div class="headRow">
<div class="divCell" align="center">Customer ID</div>
<div class="divCell">Customer Name</div>
<div class="divCell">Customer Address</div>
...
Hello,
I must cleanup some HTML code to remove <style> and <link> tags inside the <body> tag.
I'm already using PHP Tidy to do some cleanup but I did not found how to remove those tags with PHP Tidy.
Do you have a solution ? Or maybe another markup cleaner PHP class...
...
I need to create a form that will allow, among other things, a user to upload an unknown number of files to the server running Tomcat. It would be nice if the form could add upload slots to the form as needed. I haven't found much useful on the subject, so I thought I would poll the community.
...