Hey guys
Lets say I have a site with many pages..One of them is a page called projects where say students will write about their projects. Can I have a wiki JUST for this page which will have the same theme as the rest of the pages? Can I put the whole thing in a frame?
...
I have been using Firebug in Firefox and Developer toolbar in IE to help trace my styles for a branding effort in SharePoint. The trace styles in Developer Toolbar is very nice.. I can easily trace a hyperlink's styles and create the css to change it's styling, I'm having some trouble with tracing the hover style for links as neither Fi...
I'm trying to limit inserting elements to the page:
<script type="text/javascript">
$(function() {
var i = 1;
//allow only 3 elements
if (i < 4) {
$('#add').click(function() {
var add_input = '<input type="file" />'
var add_link = '<a href="#" class="remove">Remove</a>'
...
Hey,
I am trying to write a ruby script which will look in a directory and its subdirectories for HTML files, open those HTML files and insert the following line just above the closing head tag:
<link rel="stylesheet" href="styles.css" type="text/css" />
I am trying to do this with Ruby because its the only language I am familar with...
hi
I have this form
<form action="http://www.mysite.com/asp/formd.asp" method="post" target="_blank">
so the asp looks like below,
it opens a new window where ot says "send ok"
my question is how and where can I contro/define the style of this new window i.e background fonts color etc
thanks
the ASP code:
<%@ Language=VBScript...
I'm trying to add upload controls to the page.
This HTML mark-up with JavaScript is working fine but there
s no option to remove the added control:
1. Example A
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w...
Dear Knowledge Base,
I currently have two anchor tags sending url queries to put votes inside a database, but i want to switch to using forms to keep the urls clean and avoid duplicate queries (not really an issue, but makes it look ugly).
Now the anchors need to contain a span-tag inside to add additional background elements to the b...
Hi,
Recently my company has decided to rebuild an enterprise portal, which will be used by people across the globe to resister there product for extended warranty. They have come up with J2EE ( spring MVC ) and Oracle as technology stack for the Business layer, and have decided to use JSF (java server faces) to design the front-end st...
How do I do it? E.g.,
<span class="selected" id="hi">HELLO</span>
should become
<span id="hi">HELLO</span>
...
I am trying to figure out the best way to embed and resize swf videos.
Here is the url to one of the videos I am looking to embed.
http://help.servdot.com/cpanel-whm/cpanel/x3/m/Logging-into-cPanel.php
The example embed code is
<iframe src="http://help.servdot.com/cpanel-whm/cpanel/x3/m/Logging-into-cPanel.swf" width="780" height="624...
In my ASP.NET application, I was trying to add few white spaces between two text boxes by typing space bar. The equivalent HTML source was   instead of . So I just wanted to check: is this the new replacement for white space? If yes, any idea why they changed?
...
When posting a form in ASP.NET, it adds container information to the request form keys
For example if you have a Textbox field with an ID of: txtFullName
It could end up posting something like this: ctl00_ContentPlaceHolder1_txtFullName
This is fine if you control the page where you are posting to but if you are posting to someone els...
Ok so heres the deal. I have a page I'm creating in html and css. I've got a div whose background needs to be transparent.
However when I use opacity: .6; Everything in the div goes see through.
Is there any way to fix this so it works in safari, IE, and firefox?
...
The page works fine in Chrome, but I have this one minor error in FF and a different problem in IE. Assistance with either of these issues is greatly appreciated. Since ive been stumped in the FF error the longest, I'll start with that one:
Here's the code: http://truxmapper.appspot.com/sched.html
The date picker selects a date usin...
I have an element where I'm already using the rel attribute, but I would also like to add another attribute that I'll be using in JavaScript.
<a href="/" rel="blah" foo="bar">Link</a>
Is it alright to add other attributes? Or is there a better option?
...
Hi guys,
I am building this mobile website.
If you check it on your mobile browser it should fit in such that there is no horizontal scrolling. (Content should only be vertically stacked).
Can someone help me in fixing the CSS of the page. Just let me know what the correct CSS should be so as to auto adjust for different mobile phones...
Possible Duplicate:
What’s the point in having “www” in a URL?
Hello, I have little to no experience owning a website but I am willing to learn all that there is to this process. However I am frustrated because I am constantly blocked by simple problems.
I just uploaded my first index.html page which is basically a backgroun...
I want to create an input fields with rounded corners.
HTML:
<div id="RightColumn">
<input type="text" class="inputForm" />
</div>
CSS:
.inputForm
{
-moz-border-radius:10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
-khtml-border-radius: 10px; /* KHTML */
border-radius: 10px; /* CSS3 */
behavior:url("borde...
Hi,
Does definition list <dl> require that each <dd> will have <dt> tag?
Example:
option1 for each <dd> exist his <dt> also if <dt> empty:
<dl>
<dt></dt>
<dd>value1</dd>
<dt>name2</dt>
<dd>value2</dd>
</dl>
option2 for each <dd> not exist his <dt> if <dt> empty:
<dl>
<dd>value1</dd>
<dt>name2</dt>
<dd>value2</dd>
</dl>
Edi...
Hi all,
I believe that most of you have heard of preloading of images.
But is there anyone who knows how we can preload webpages?
For instance, when we are login to GMAIL, we will see a loading progress bar.
How do we preload html webpages/web applications (non-flash based )
as per what gmail is doing?
best Regards
...