Hey everyone,
I have a pretty standard css layout where I use a container div that is 980px wide to hold everything. The only problem is that I want to have a 1900px wide banner half way down the page that is centered in the middle and is 100% width of the page. Is there any way to do this without getting rid of the container div?
so I...
http://www.akben.com/The%20Winton%20Group/contact_us.php
I have a set of five divs sitting side to side. The last two move down approximately 20px in IE8 when the page is made smaller from the right hand corner... can anyone point out what I am messing up?
Thank you!
...
So I have a textarea containing text. I want to be able to display a tooltip when my mouse is hovered a certain word inside the textarea.
Is this possible at all? I would prefer to see a solution that doesn't use any third party javascript libraries.
Thanks!
...
My website renders well on the iPhone/Safari browser, with one exception: My text input fields have a weird rounded style which doesn't look good at all with the rest of my website.
Is there a way to instruct Safari (via CSS or metadata) not to round the input fields and render them rectangular as intended?
...
Safari on the iPhone renders my {position: relative; top: 80px;} div 1px too low (all other browsers work fine) - is there any way to fix this via conditional css?
...
Hi All,
I am trying to embed my custom font in my web site, got a link folder from http://www.fontsquirrel.com/fontface/generator this site after uploading a font on this site, it gives me a css
@font-face {
font-family: 'VoltaEFTU-Regular';
src: url('voltaeftu-regular-webfont.eot');
src: local('☺'), url('voltaeftu-regula...
I have the following that I would like wrapped as units.
<div class='tag-box'>
<a href=#>Axe Committee</a>
<div class='circle'><a href=#>x</a></div>
</div>
The CSS for these classes are:
.tag-box {
display:inline;
}
.circle {
display:inline;
padding-left:4px;
padding-right:4px;
background:rgb(196,15,24); /*dark red*/...
Hi there.
I need to decode HTML entities, e.g. from ö to ö, and & to &.
URLEncoder.decode(str) does not do the job (convert from % notations). TextUtils has a HTMLencode, but not a HTMLdecode.
Are there any function for decoding HTML entities?
Regards,
Johan
...
Possible Duplicate:
jQuery alert plugin that produces alerts like Twitter/StackOverflow?
Question says it all.
Can someone point me to an example of how they do the alerts at the top when a new message arrives or someone posts to my answers or I just have a notification..
Thanks.
P.s. I would love a JQUERY solution, but can...
In edit profile form I want to display selected value of Country dropdown list as value saved in db and user can change that also.
...
Hi,
Could someone clarify for me what input Flash accepts for its text fields?
I am tasked with managing a content management system, this then generates XML which power's flash sites. I have nothing to do with Flash. I work with PHP. Currently we use a rather temperamental Flash Text Editor which is prone to all sorts of troubles.
I ...
Hello ,
I using tdom version 0.8.2 to parse html pages.
From the help pages I found the following commands to get the ElementById
TCL code
set html {<html>
<head>
</head>
<body>
<div id="m">
</div>
</body>
</html>
}
package require tdom
set doc [ dom parse -html $html ]
set node [ $doc getElementById m]
But when I execute the s...
How can show closeable in the top of the page like stackoverflow new answers.
im using asp.net
...
If you go here: http://74.53.45.114/~hendrikv/new/galleries.html - click on any gallery and then click on any thumbnail before all the thumbnails are loaded the image is not opened in Lytebox. Also looks like this only happens to some visitors and not all.
Is there anyway to get around this so that the image opens in Lytebox even though...
div is a block element and span is an inline element so according to xhtml 1.0 validation it is not right but still several websites uses this method for styling is it all right ? or it will cause some problem please help me ?
...
Hello, first of all I am not quite good at web design.
I have to dynamically create a table with a variable number of columns, determined at runtime.
Can somebody tell me if it's possible to have a html table with equal size columns that are fully stretched ?
Any hints ?
...
Hello! For example I have collection of blocks
Input:
[
[name: "Block #1", x:0, y:0, width:4, height:1],
[name: "Block #2", x:0, y:1, width:2, height:1],
[name: "Block #3", x:2, y:2, width:2, height:1]
]
Output:
<table width="4" border="1">
<tr>
<td colspan="2" width="4" height="1">Block #1</td>
</tr>
<tr> ...
Hi,
My website contains drop-down menus at the top right corner of the screen. The drop-down is displayed fine, but when I hover over elements within the drop-down, IE renders them incorrecty. Firefox, however, displays them the way I want.
The website is http://www.textsensor.com/test. Can anybody tell me what is causing the issue in I...
I'm trying to add a button onclick event to a button tag when I load my Fancybox popup using the following code:
var processOrder = function(id) {
$('#processPopupLink').fancybox({
'hideOnContentClick': false,
'frameWidth': 850,
'frameHeight': 695
}).click();
$('#processComplete').click(function() {
...
Hi,
I'm using this css, but it puts an image in the center. Any way to left or right align an icon using an input type="button" html button, so that the text and the image fit on the button nicely?
background: url('/common/assets/images/icons/16x16/add.png');
background-position:center;
background-repeat:no-repeat;
...