When I have the following action in a form tag, what does the '/Account/Profile` part mean?
<form method="post" action="/Account/Profile"
Is it a Filename for a view? Is it an action?
...
I'm tending to make an in browser template editor. It will have a GUI to play with css (text, background, margin...) html (make div layout) and generate html and css separately. But it seem is huge thing to do. So I'm looking for something similar. Any suggestion?
...
I want the text to appear in one single line..td actually contains text and drop down list controls...Also its a table within another td tag
I have tried changing everything..alignment, width..what not
but the text moves to the next line instead of appearing on the same line..I want the horizontal bars to appear..what value should I gi...
How can I make the header fixed and the content scroll "under" the header? Also how can I get the CSS Play button to be above the line and look decent?
index.html:
<!DOCTYPE html>
<html>
<head>
<title>lingo records</title>
<meta charset="utf-8">
<link rel="icon" href="/favicon.png">
<link rel="author" href="http://fork...
Hi all my goal is to get the child menu expanded towards the left hand side instead of the right hand side.
The CSS is as follows,
/*<![CDATA[*/
/* page styling, unimportant for the menu. only makes the page looks nicer */
/* - - - ADxMenu: BASIC styles - - - */
/* remove all list stylings */
.menu, .menu ul {
margin: 0;
...
Hi I have a question:
if you try my code below you can see that the background color is light blue and it occupies the whole page of a site, I want to resize it how can you do that? I mean that the color will fit to the same size where the fill up boxes are,
do i need to add this code: width="60%"
can you please tell me where can I add...
how can I load an html page inside a div. With the 'object' tag it's loading, but I think it's not a good approach. It is not an external file. Is dojo good for this?
...
I have a PHP MySQL database which I will be storing all my information in. I have a text field on a HTML page that the user can add data to and then on submit a MySQL query inserts this information into a database. Pretty standard stuff.
However, I am now in a position where I can attach a TinyMCE or FCKEditor onto my text field (now a ...
I know it's easy to get the CSS that is applied to a single node in HTML, using tools like the Firebug extension for Firefox, etc.
But is there a way to see all the CSS that is in effect on an entire page, or a larger fragment of HTML?
Specifically, we are cleaning up our one extremely large CSS file into smaller modules and would like...
Hello OS folks,
I have this on an html:
<input type="text" name="username" size="10" alt="Username" value="Username"
onfocus="if(this.value=='Username') this.value='';" />
But this prompts an irritating IE security box on browser.
It there anything I can do to get rid of that IE box? Or any other option to use to the same e...
How can i get calendar selected values in php file? i am using calendar from this link
http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerMultiple.html
...
Hi All,
I am sick to death of assholes spamming my site, and I hate those stupid Captcha things, and my customers have had it up to their necks with the captcha on my site.
So, I had an idea. What if there was a small line. And all they had to do was simply drag a circle from the left of the line to the right. And once the circle reach...
I have this code to cast a shadow on imagese:
.shadow{
box-shadow: -2px 2px 4px #666;
-webkit-box-shadow: -2px 2px 4px #666;
-moz-box-shadow: -2px 2px 4px #666;
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#666, offX=-2, offY=2, positive=true);
}
This works in FF, Opera, Safari, Chrome but not in IE6 (haven't tested any ...
Hi all,
Thanks in advance,
I am using NSXMLParser to parse xml file, in my application,
my xml file is like this
< item >
< ID >
123456
< /ID >
< category >
Films
< /category >
< Heading >
HollyWood films
< /Heading >
< Author >
samule
< /Author >
< imageFull >
http://tree_one.jpg
< /image...
Hi,
I'm working on a web application where we have a very large image (4000 * 2000 pixels) that can be dragged about the place, zoomed in/out.
When the image isn't zoomed in or out, it can be dragged about very fast and it looks great. As soon as i change the size of the image by some factor, the dragging becomes dreadfully slow.
I ...
I have a ul with around five <li> items. E.g.
<ul>
<li>Step 1 : Take food</li>
<li>Step 2 : Go Around</li>
<li>Step 3 : Deliver</li>
</ul>
Also I have links like
<a href="# id="prev"> Previous</a>
and
<a href="#" id="next"> Next</a>
I have to show the first li at first. Then when the next link is clicked, it should now ...
Hi All,
I am very new to perl coding,
I am calling a method, which again calls some other method and then generate an html code. I need to embed the htmlcode in my current code, so as to add that to the current html code.
I am calling the method like this
my $test = $frek->xyz();
where xyz generated an html.
now i need to embed the $...
I am using ckeditor to save my texts... (asp.net mvc)
In the database the text are stored like this:
<ul><li>List item</li><li>List item</li><li>List item</li></ul>
And when I am running my website I want it look like this:
List item
List item
List item
But the text are the same as in the database:
<ul><li>List item</li><li>List...
Hi there, at the site I'm working on euroworker.no, we have a videolightbox (click "se video") that shows a youtube video. Thing is, it can only be called once, in any browser.
After this is called also, Firebug racks up a whole lot of errors!
I've looked through and can't seem to identify why it will only fire once.
Here's the Vid...
Hi guys,
I've two different views (for instance, one for colors and other for cars )
That views point to the same template.
If you click in one color, the template will show all the information about the color selected, same thing whit the car.
What I'm trying to do is to insert a button to go back:
<form action="">
{% ifequal back_t...