I have a list of items that I want to be laid out horizontally. It's basically a row of pictures with captions. Something like
picture1 picture2 picture3
caption1 caption2 caption3
So I figured that was a unordered list with List elements styled with "display: inline". But the captions have to be block elements otherwise they are...
I've been looking at the source of the A List Apart website, and I've noticed something strange - every line (blank or not) has a trailing space. I work in typesetting, so trailing spaces are something I regularly remove out of course, so why in this case would you want them? I have a lot of respect for ALA so I'm assuming there's a good...
What I'm trying to do is provide a form where a user can type or cut and past formatted text and be able to send it as an email (similar to outlook). This is required because it's closely resembles the current work flow and these emails aren't being saved anywhere besides people's inboxes. This is obviously a bandage on a bigger proble...
I'm after a way to make the size of the flash file smaller in height. I can change the width but the height seems to be relative to the size of the window its in?
http://www.bevelite.com.au/test
I'm using page-flip.com
...
Hi, I know this is an elementary question for you php people out there:
I put p tags around in some php by doing this:
echo "<p>";
echo $VM_LANG->_('PHPSHOP_COUPON_ENTER_HERE') . '<br />';
echo "</p>";
It is a silly way to do it. So how can I put the p tags within the one 'echo'?
...
Can anyone explain to me the benefits of using XML-RPC over a straight HTML Form ?
On first glance, they seem to accomplish the same thing.
The XML-RPC is "formatted" using XML, but you can do the same in a form (think textbox).
I have an app that takes data from a script that runs on the client PC. The output from the script is XML. Cu...
I'm having some concurrency issues with a webpage I'm building. Basically, I have three script files that I'm using to hold some data:
script1.js:
`var myValue = 1;`
script2.js:
`var myValue = 2;`
script3.js:
`var myValue = 3;`
And I have one page, mypage.html that basically looks like this:
`<html>
<script>
function get_num...
Say I want to run a simple Python script that is a web server. And I want to connect a browser to it that refreshes every N seconds, i.e. so the page is updated. How would I do that?
I assume the Python server script would generate some HTML that contains javascript that sleeps and forces a refresh? Or can the browser force a refresh?
...
Hi,
I've been running into problem after problem trying to use the a third party HTML editor to do what (I hoped) was a simple operation. Because of these problems, I'm looking for recommendations for an alternative HTML parser I could use to perform the operations.
Here's my situation, I have span tags in my html (with an ID attribut...
Hello.
I have a page which contains a products' list.
I decided to use an unordered list instead of divs to display the products but there is a problem with that, since I can't insert other block level elements in the <li> to achieve some specific design I want (an image with some background, bordered descriptions, floated links etc e...
I am trying to display a banner on a report while printing but it doesn't print. What I did was I set the display status to display:none in my regular CSS
#transfer_head2
{
display:none;
}
and I changed the display status to display:block in my print CSS
#transfer_head2
{
display:block;
}
but this is not working. Why? Can anybody h...
This is quite strange and I have never seen this before, maybe my computer needs to be restarted but: every link that I add on my web page is disappearing. You can see a live example here.
This is my style sheet:
/*------- UNIVERSAL -------*/
body
{
background: #333333;
color: #222222;
font-family: Arial, Helvetica, sans-se...
So I ran into a problem. Wrote the following code snippet:
teksti = teksti.Trim()
teksti = Replace(teksti, "<", "& lt;")
teksti = Replace(teksti, ">", "& gt;")
teksti = Replace(teksti, """", "& quot;")
teksti = Replace(teksti, "'", "& #8217;")
teksti = Replace(teksti, "%", "& #37;")
teksti = Replace(teksti, "&", "& amp;")
teksti = Repla...
http://shop.auxout.com/
We're hosting the store on a virtual server for the time being. Can anyone tell me where I can edit OSComm so that the top AUX logo points to www.auxout.com?
...
The HTML symbol for angle, (∠) does not work in IE 6 or 7. What are the other alternatives to display the symbol in Internet Explorer ?
...
I'm using ASP.NET, some of my buttons just do redirects. I'd rather they were ordinary links, but I don't want my users to notice much difference in the appearance. I considered images wrapped by anchors, i.e. tags, but I don't want to have to fire up an image editor every time I change the text on a button.
...
I have an (XHTML Strict) page where I float an image alongside regular paragraphs of text. All goes well, except when a list is used instead of paragraphs. The bullets of the list overlap the floated image.
Changing the margin of the list or the list items does not help. The margin is calculated from the left of the page, but the float ...
I've been a web developer for really quite some time now, but this is something I've never really done, and my progress so far has used some very complex methods. The following is the layout I want, there are rules to this layout though, as I will explain in a moment.
----------------------------------------------------
| ...
I'm trying to find a way that will add / update attribute using javascript. I know I can do it with SetAttribute function but that doesn't work in IE.
...
Hi there,
I have a really simple question. I want to know how to grab the onSubmit event from a form to do some form validation, because I don't have access to it directly. (I'm writing a Wordpress plugin for comments, so don't have direct access to the form tag or the submit button.)
I've got so frustrated trying to do this for my p...