Here is the code:
<style type="text/css">
html, body {font:0.9em/1.2em arial, verdana, helvetica, sans-serif;}
#todayOn {background-color:#efefef; repeat-x top left;border-bottom:1px solid #ddd;border-top:1px solid #ddd;height:52px;margin:15px 0;}
#todayOn #pageTitle {float:left;padding-left:3px;}
#todayOn #pageTitle h2 {col...
Is there a way in HTML4 and/or CSS to do the following, but then correctly:
(2)
How can I move my expression to the left, under the ¯ symbols, such that they overlap eachother? Note: it should work on every font-size.
Thanks!
(My current code, thank you Matthew Jones(+1) for the text-decoration: overline, lacks the scalin...
I'm using Hpple and it's been great so far however I want to get all the divs inside another and that I can do. But then I am unable to further parse the contents (innerHTML, and in the source it is labelled innerHTML not innerText) asking for the elements content returns nothing as there is no text directly in that element, only child n...
I'm developing a newsletter in asp.net that will be send to a large quantity of users, so each kilobyte that I can reduce will help a lot in the use of bandwidth consumption, what I do until know is write the aspx excluding some spaces between tags, and before render, i've renamed some controls ids to "-" to save more space.
So now, the ...
hi,
I want to display a children element of my html page all over the browser window.. in other words I would like to enlarge it and keep it the same size the browser window also when it is resized after loading.
I was wondering if I have to move this object outside the parent elements or I can set these properties with css.
At the mo...
If I have 2 tables:
<table id="Table1">
<tr>
<td></td><td></td><td></td>
</tr>
</table>
<table id="Table2">
<tr>
<td></td><td></td><td></td><td></td>
</tr>
</table>
The first has 3 columns, the second has 4 columns.
How can I define a style to represent both tables when I want Table1's cell width to ...
I have a list of checkboxes on a form. Due to the way the CSS is structured, the label element is styled directly. This requires me to nest the checkbox inside of the tag.
This works in raw HTML, if you click on the label text, the state of the checkbox changes. It doesn't work with the rails <%= f.check_box %> helper, however, beca...
I want to show and hide rows of a table based on the value of a select box and this works in Firefox but not IE:
<select onChange="javascript: toggle(this.value);">
<option value="cat0">category 0</option>
<option value="cat1">category 1</option>
</select>
<table>
<tr name="cat0">
<td>some stuff v</td>
<td>some stuff v</td>
</tr>...
On an HTML page, using the INPUT tag, how can you get it so that when you click the browse button that it filters for image files only? Bonus points if it can include .bmp files.
...
I need a few input elements, but their values won't be submitted anywhere - they're just going to be manipulated by some client-side JavaScript. Do I have to place them in a <form> to have legit HTML, or can they just be free-standing?
...
I'm constantly modifying some text on a web page with JavaScript. I want the
text to be in-line with other elements, like texts, inputs, etc. What HTML element should I use? Both <div> and <p> create new-lines and other things. <b> kind of does what I want, but it bolds all the text. What's the correct alternative?
...
I know there is a way to retrieve the coordinates by clicking on the map, using specifically
document.getElementById("lonTb").value=point.x;
document.getElementById("latTb").value=point.y;
Firstly, i have a html file namely MapToolKit.html, a mapGPS.js and a mapSearch.js.
how do i input the coordinates returns ...
I'm trying to reutilize code that generates FILE fields for use when something is to be added to the database, and grayed out (and disabled) with data already in the database when the item in question is being edited or viewed in detail. However, I can't seem to get the text to fill the field. I'm using this:
echo '<input type="file" na...
Hi,
I'm using ASP Master pages, and I would like to add an "onkeypress" event handler to the <body> in the Master page, but only for a single page.
How do I do this?
Obiwanke-stackoverflow, you're my only hope.
-Alan
...
I have the following html (not proper code but for understanding)
<div id=content-wrap overflow-hidden>
<div1 float-left overflow hidden> </div>
<div2 float-right overflow hidden> </div>
</div>
Now when the content in div 1 is more, then it expands the main container but by div2 which is on the right is not expanding
Is there any wa...
I had a problem and whipped up a quick solution: fade-in and fade-out a series of quotations. My solution works just as I want it in every browser except any of the IEs. The only problem with the IEs is that the text does not fade in and fade out; the text simply pops into existence.
I believe I've run into a similar problem before when...
Possible Duplicate:
How to add some non standard font to website?
I am working on new project.
In this web site the client used a font (Volta Regular).
Please tell me how I can use it. This font is missing on my computer.
How can I use it? This problem would come with all machine. How could I adjust it through CSS?
...
A html table cols and rows are generated dynamically,
i.e, for the first instance it could be two rows and there columns.
and next time it could be two rows and 10 columns
My question is how to adjust the with automatically of the table so that the table always appears 100% in the page adjusting the coulmn size and row size
<tabl...
Hello everyone,
I have a search box and a buttion. currently a user enter some text and press the search button. But I want to add another feature that instead of clicking the search button people can hit enter to search. How can I do that?
Here is my code sample:
<form method="post" action="">
<input id="search" name="search" ty...
I have quickie:
When you code/develop themes, how do you link to various files in your html/css code?
Example:
We at our firm use mostly <base target="http://whatever"> in our main template and then just <img src="./images/file.png"> in our html, "/category/page" as links and something alike in our css.
However, when testing on dif...