Hello,
as per, whether I ve trying hard enough before asking, I have been swearing for the last 18 hours non-stop. There is no way I can get to do the simplest of the things.
I found a similar question here
http://stackoverflow.com/questions/351058/space-between-two-rows-in-a-table,
but I dont visualize the answer, and each answer wa...
Hi,
I'm trying to display HTML in my java application that has a linked stylesheet include in my HTML.
I am transforming my XML to HTML using XSLT from Java. I want to include a stylesheet so I can easily style the html output. However the stylesheet is being ignored and the html is being output normally.
To do this I am using a JEd...
I was reading now about how it’s a good practice to set the font on <body> to 62.5%, so that later you can use the divide-by-10 conversion from pixel units.
But I was wondering: why not set <body> to 6.25%? Then you can use the same dimensions for em units as for pixel units, assuming the default browser font size is 16 pixels.
E.g.
b...
Hi
Does anyone know the vendor prefix for gradients within IE9 or are we still supposed to still be using their proprietry filters?
What I've got for the other browsers is:
background-image: -moz-linear-gradient(top, #444444, #999999); /* FF3.6 */
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #444444),co...
I'd like to display a little tooltip similar to this:
That little black box appears when I put my mouse over it. How can I achieve this? Is it using jQuery or MooTools or what?
Thanks from this beginnig web designer!
...
Is there a way to prevent a string of non-alphanumeric characters from being split by word wrapping in HTML/CSS?
For example, in a table cell, if I have a string such as '--------', it will be split over two lines at the right-hand edge of the cell, whereas 'aaaaaaaa' will remain intact and be pushed onto the next line.
Edited to say: ...
So I've been researching and trying to find what the best option is and what works best in all browsers. So the three options I've come up with are Transparent PNG, CSS Opacity, or jQuery fadeTo();.
Any thoughts on what's the best way to go? Thanks!
...
I want to have all input elements on my page trigger a function when they change. Can I do it from a CSS?
I tried this:
<STYLE type="text/css">
input {onChange: function() {alert("foo");};}
</STYLE>
It didn't work in Google Chrome.
...
I have to create below type html page. background (orange) image.
HTML gurus, Please help out.!
...
Hey folks,
new to stackoverflow.
I was pounding my brain yesterday regarding an image slider I am working on. Still learning jquery and cant quite figure out what I am missing or where to add the functionality i want:
http://www.stuartthom.com/slider/Slider.html
What I would like to be able to do is have each of the thumbnails be a di...
I have a table:
<table>
<tr>
<td colspan="2"><h2>Order Awards here:</h2></td>
</tr>
<tr>
<td class="aocBlack">Delivery:</td>
<td>
<select style="width: 200px;" id="deliveryMethod" name="deliveryMethod" size="1" onchange="showMailing()">
<option value="print">I will print it myself.</option>
<option value="mail">...
Is it bad thing if I add more than one class for one object. Let's say:
<a href="#" class="paren" class="defaul">text</a>
Don't ask me why, I just need it.
Thanks.
...
Does .css( propertyName ) not breaking the rule of separation of concerns?
As a rule of separation of concern , we keep content, style and behaviour in different layer. but when we add styles using behaviour (http://api.jquery.com/css/), does it not breaking the rules of concern.
...
This is really really weird. Sometimes when I reload it shows where it should be, like this:
When I change the color to Orange or Blue (haven't tested any other colors, that ul is brought down. What's the reason? Thanks for the help!
#topuserbar a
{
color:Orange;
}
Here is the complete CSS and HTML.
body
{
background-imag...
I want to make sure that all of my form fields uses the same font. I have:
input
{
font-size:1em;
font-family:Verdana;
}
But this doesn't get applied to drop down lists, nor to multi-line text boxes.
...
hi,
how to see the .css files loaded in a page in google Chrome? I can see the .js (Scripts) but not the .css...
Regards
Javi
...
What would make a html element e.g. an ul aboslutely positioned with a zindex of say 5000 to appear below a div of a lower zindex say 0? This behaviour is seen in IE8.
...
Possible Duplicate:
CSS - Equal Height Columns?
There seems to be many articles on the web, but many are not updated and I can't understand if there is really a BEST way to build 2 equal columns in CSS (without knowing which one of them will be the longest).
Example:
What I want to achieve is that column B will strech all ...
I have a series of parragraphs. Each one ends with a ilustratión which clarifies the subject being xplained in the parragraph.
I want the ilustration to be on a new line and not display along with the text and I have found the following solutions, with it's own problems:
Put the ilustration in a different <p> than the text related to t...
I have the following markup and CSS:
<div id="contactarea">
<p class="heading">Anuncios Premium</p>
<p class="tag">Asegure que su venta se complete!</p>
</div>
#contactarea
{
min-height:150px;
border:1px solid cyan;
}
#contactarea p .heading
{
Color:Yellow;
background-color:G...