I want to upload a link of download in a folder in my website but i do not know what is the html code of making a folder or folder tree. plz help me. You can also tell me the link whr i can find it.
What is the html code of putting folder in my website?
You can create a new folder in your local site by right clicking. From there you can FTP it onto your server.
birthday cards
Monday, May 24, 2010
How do you adjust the input size in html code?
I have set up an autoresponder at one of my sites, but i want to enlarge the input size of one of the boxes to accept large submission articles. Any suggestions?
How do you adjust the input size in html code?
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
%26lt;TEXTAREA NAME="comment" ROWS=6 COLS=40%26gt;
%26lt;/TEXTAREA%26gt;
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!
Reply:http://www.devguru.com/technologies/html...
use textarea as an input field
Reply:Textareas don't have any limit to the number of characters they will accept. So even though it might not be visible in the form component, the text should be submitted okay.
Not sure if you're using a textarea element or not - I think we need more info actually.
Joyce
http://www.designbyjoyce.com/
Reply:You can specify the size of your INPUT box by changing the SIZE value. The value you specify within your SIZE attribute will determine the width of your input box within your web page form
ie: %26lt;INPUT type="text" SIZE="10"%26gt;
How do you adjust the input size in html code?
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
%26lt;TEXTAREA NAME="comment" ROWS=6 COLS=40%26gt;
%26lt;/TEXTAREA%26gt;
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!
Reply:http://www.devguru.com/technologies/html...
use textarea as an input field
Reply:Textareas don't have any limit to the number of characters they will accept. So even though it might not be visible in the form component, the text should be submitted okay.
Not sure if you're using a textarea element or not - I think we need more info actually.
Joyce
http://www.designbyjoyce.com/
Reply:You can specify the size of your INPUT box by changing the SIZE value. The value you specify within your SIZE attribute will determine the width of your input box within your web page form
ie: %26lt;INPUT type="text" SIZE="10"%26gt;
What website can I use to get an HTML code for music, not music videos?
I would like it to autostart. The song in particular I am looking for is "All These Things That I've Done" by The Killers.
What website can I use to get an HTML code for music, not music videos?
You could make a mp3 playlist from one of these websites...
myflashfetish.com
projectplaylist.com
Just create a free account, pick a playlist skin, search for some mp3's %26amp; add them to your playlist then save it %26amp; copy the code %26amp; paste it on your profile.
What website can I use to get an HTML code for music, not music videos?
You could make a mp3 playlist from one of these websites...
myflashfetish.com
projectplaylist.com
Just create a free account, pick a playlist skin, search for some mp3's %26amp; add them to your playlist then save it %26amp; copy the code %26amp; paste it on your profile.
How can I make an online Jeopardy board using HTML?
I am trying to make a Jeopardy board to function on a website. Is there any way that I can do this with HTML?? I cannot use flash, or anything else. I am mostly working with frontpage, but if I can get the code to do it, that would be great. I have everything worked out with hyperlinks right now, but I need help with the board itself.
My problem is that I can't figure out how to make the value buttons to disappear after they've been clicked and I return to the homepage. (for example, the $100 question in the first category is picked. I click the value button and it hyperlinks to a new page. I then have a back to the board hyperlink, at which point I want the already clicked buttons to be invisible when I go back to the homepage from the questions.)
Does anyone have any idea how to do this??
How can I make an online Jeopardy board using HTML?
Use javascript to hide and unhide buttons based on variable values stored within the code.
To make these values available throughout the pages, load your site in frames and make one frame hold all the variables while in the other frams let the HTML pages load and unload as ususal.
Let me know if you need any further help.
My problem is that I can't figure out how to make the value buttons to disappear after they've been clicked and I return to the homepage. (for example, the $100 question in the first category is picked. I click the value button and it hyperlinks to a new page. I then have a back to the board hyperlink, at which point I want the already clicked buttons to be invisible when I go back to the homepage from the questions.)
Does anyone have any idea how to do this??
How can I make an online Jeopardy board using HTML?
Use javascript to hide and unhide buttons based on variable values stored within the code.
To make these values available throughout the pages, load your site in frames and make one frame hold all the variables while in the other frams let the HTML pages load and unload as ususal.
Let me know if you need any further help.
How do you add an indent to an html code?
I'm trying to make a web page but I've yet to learn how to make indents. And I want to get this site up soon%26gt; It's mostly indenting what people say like in a fanfic, so could some one help me out?
How do you add an indent to an html code?
Load the HTML code into Netscape composer.
You can indent by using the tab key or increase the margin. Netscape does it for you (and if you like, you can look and see what the HTML code is which Netscape will generate for you!)
Reply:You can use a non breaking space %26amp; nbsp ; (With no spaces)
It's best to use CSS: style="text-indent: 10px;"
If it's an enter paragraph you could do this: %26lt;p style="padding-left: 10px;"%26gt;
Reply:%26lt;style type="text/css"%26gt;
p
{
text-indent: 20px
}
%26lt;/style%26gt;
here is the W3 Schools text indent reference page
http://www.w3schools.com/css/pr_text_tex...
Reply:The easiest way is %26lt;BLOCKQUOTE%26gt;Your indented text here%26lt;/BLOCKQUOTE%26gt;.
Alternatively define a CSS class for the indent
%26lt;style type="text/css"%26gt;
.indent {padding-left:10px;}
%26lt;/style%26gt;
%26lt;p class="indent"%26gt;Your text here%26lt;/p%26gt;
sepal
How do you add an indent to an html code?
Load the HTML code into Netscape composer.
You can indent by using the tab key or increase the margin. Netscape does it for you (and if you like, you can look and see what the HTML code is which Netscape will generate for you!)
Reply:You can use a non breaking space %26amp; nbsp ; (With no spaces)
It's best to use CSS: style="text-indent: 10px;"
If it's an enter paragraph you could do this: %26lt;p style="padding-left: 10px;"%26gt;
Reply:%26lt;style type="text/css"%26gt;
p
{
text-indent: 20px
}
%26lt;/style%26gt;
here is the W3 Schools text indent reference page
http://www.w3schools.com/css/pr_text_tex...
Reply:The easiest way is %26lt;BLOCKQUOTE%26gt;Your indented text here%26lt;/BLOCKQUOTE%26gt;.
Alternatively define a CSS class for the indent
%26lt;style type="text/css"%26gt;
.indent {padding-left:10px;}
%26lt;/style%26gt;
%26lt;p class="indent"%26gt;Your text here%26lt;/p%26gt;
sepal
How do I convert my own downloaded music to html?
I wish to put a music download on to my space, this is off my CD. and I need to change it to HTML.
How do I convert my own downloaded music to html?
You need to find a place to host it and then find the code to linki to it on myspace. Myspace should have tutorials on this.
How do I convert my own downloaded music to html?
You need to find a place to host it and then find the code to linki to it on myspace. Myspace should have tutorials on this.
How do you add something with an HTML code to a freewebs site?
I've tried just putting in the code but that doesn't work. Can anyone help me?
How do you add something with an HTML code to a freewebs site?
you mean like a picture?
you can go to photobucket.com and upload pictures were then you can resize them and everything and then theres their html code you can copy
Reply:No, that's not what I meant. But I find out how to do it. Thanx anyways. Report It
How do you add something with an HTML code to a freewebs site?
you mean like a picture?
you can go to photobucket.com and upload pictures were then you can resize them and everything and then theres their html code you can copy
Reply:No, that's not what I meant. But I find out how to do it. Thanx anyways. Report It
How do I create a submit form html script for username and password?
I need the Information sent to my email address in a message because I'm creating a website. Help!
How do I create a submit form html script for username and password?
Note: If you are using PHP you may need to modify the php.ini file.
Reply:Go to http://www.peej.co.uk/articles/http-auth...
Reply:You need a script, or program on your server which will process the info submitted in your form. The processing could be anything from emailing it to you, or submitting it to a database.
Lots of PHP mail scripts kicking around on the web. if you need a hand message me.
How do I create a submit form html script for username and password?
Note: If you are using PHP you may need to modify the php.ini file.
Reply:Go to http://www.peej.co.uk/articles/http-auth...
Reply:You need a script, or program on your server which will process the info submitted in your form. The processing could be anything from emailing it to you, or submitting it to a database.
Lots of PHP mail scripts kicking around on the web. if you need a hand message me.
How to create a html email ,for yahoo or google?
I would like to know how to create a html email that fits not only outlook but web-based email like yahoo, google, etc. I've tried copy n' paste the html content in email but it showed the code itself in the other end. please help.
Thanks in advance!
How to create a html email ,for yahoo or google?
don't have a clue to your question, just felt sorry for you cos no-one had answered your question and i didn't want you to feel left out.
printable cards
Thanks in advance!
How to create a html email ,for yahoo or google?
don't have a clue to your question, just felt sorry for you cos no-one had answered your question and i didn't want you to feel left out.
printable cards
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
I have a drop down menu written but cannot figure out how activate the "Go" or "Submit" button so when the user clicks it, they are taken to where I want them to go.
How do I make the "Go" button active so it directs them to their choice of location?
Simple is VERY GOOD.
Long and complicated Java Scripts will only confuse me.
Explanations are APPRECIATED.
If you can explain the dynamics of your answer so I can understand the process of what occurs when the "Go" button is clicked, I will love you forever.
PLEASE DO NOT copy and paste if you REALLY DON'T KNOW what you are doing. Let the experts shine.
THANKS
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
simple, this is the easiest way of doing it, although it would cause a lot of programmers to bite their tounges.
Each option tag has a value of the url you want to go 2. when it is changed, 'onchange' the window.location.href is the address of the window. this.value is the value of which option you picked, and wala, the address takes the value of this.value.
Reply:ok, when? Report It
How do I make the "Go" button active so it directs them to their choice of location?
Simple is VERY GOOD.
Long and complicated Java Scripts will only confuse me.
Explanations are APPRECIATED.
If you can explain the dynamics of your answer so I can understand the process of what occurs when the "Go" button is clicked, I will love you forever.
PLEASE DO NOT copy and paste if you REALLY DON'T KNOW what you are doing. Let the experts shine.
THANKS
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
simple, this is the easiest way of doing it, although it would cause a lot of programmers to bite their tounges.
Each option tag has a value of the url you want to go 2. when it is changed, 'onchange' the window.location.href is the address of the window. this.value is the value of which option you picked, and wala, the address takes the value of this.value.
Reply:ok, when? Report It
Can someone help me work out the CSS code for inserting a logo into HTML document?
I need to insert a logo in the top right hand corner of an HTML document. I think I have done it OK in the html sytax but, as I am quite new to this, I am unsure how I define it in the CSS. I just want it in the right hand corner above the title (which is left-aligned). WHen I check the html page the box for the logo with the red cross in the corner appears for about 1 second and then disapperas again. Can anyone help me?
Can someone help me work out the CSS code for inserting a logo into HTML document?
Hello,
Well you will need to put this in your header....
/----------------------------- the CSS
%26lt;style type="text/css"%26gt;
#logo {
background:url(logo.gif) right no-repeat;
width:your value herepx;
height:your value herepx;
}
%26lt;/style%26gt;
/-----------------------the HTML
%26lt;div id="logo"%26gt;%26lt;/div%26gt;
thats it...
Thanks,
Greg WInn
http://winn.ws
Reply:Check here:
http://www.w3schools.com/css/css_referen...
If the box appears then disappears, the problem is further down your page!... You erase it!
"The red cross appears" just means the link to the picture (logo) is incorrect: you need correct url, like:
background-image: url("pics/20048202.jpg");
Reply:If I see the site, it might help. Is it online yet or just saved at your computer?
I would define a class for your logo (considering you probably have more images on the page) and use the following for putting it in the corner via css
.[defined class] {
position:absolute;
top: 0px;
right: 0px;
}
to add a class to the logo, just add the tag[ class="" ]
Can someone help me work out the CSS code for inserting a logo into HTML document?
Hello,
Well you will need to put this in your header....
/----------------------------- the CSS
%26lt;style type="text/css"%26gt;
#logo {
background:url(logo.gif) right no-repeat;
width:your value herepx;
height:your value herepx;
}
%26lt;/style%26gt;
/-----------------------the HTML
%26lt;div id="logo"%26gt;%26lt;/div%26gt;
thats it...
Thanks,
Greg WInn
http://winn.ws
Reply:Check here:
http://www.w3schools.com/css/css_referen...
If the box appears then disappears, the problem is further down your page!... You erase it!
"The red cross appears" just means the link to the picture (logo) is incorrect: you need correct url, like:
background-image: url("pics/20048202.jpg");
Reply:If I see the site, it might help. Is it online yet or just saved at your computer?
I would define a class for your logo (considering you probably have more images on the page) and use the following for putting it in the corner via css
.[defined class] {
position:absolute;
top: 0px;
right: 0px;
}
to add a class to the logo, just add the tag[ class="" ]
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
I am taking internet programming but do not know much.
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
adjust the cellpadding or cellspacing.
table cellpadding="0" cellspacing="0"
if that does not work there could be margins or padding assigned to the image or table cell.
Reply:I'm not exactly clear on what you want to do. If your image is not a square or rectangle, unless you turn your image into a transparent gif, all images will otherwise display inside of a rectangle with a white background.
It doesn't matter whether you display your image in a table or not. Unless your image background is the same color as your table cell background or your page background, your images will always have a white background.
Here's a link to a good tutorial on how to save an image as a transparent gif for the web. Gif images, transparent or otherwise can only display 256 colors so the results are somewhat limited. But, it may be just the solution to your problem.
http://www.absolutecross.com/tutorials/p...
If you are experienced with png images, you could also save your image as a 24-bit png, but because Internet Explorer 6 and lower doesn't support transparent png images directly, it would still take 50 or so lines of a javascript workaround script code to force older IE browsers to display pngs without the white background.
Reply:make the image the same size as the table, or vice versa, make the table the same size as the image, therefore you will get no whitespace between the image and the tables borders.
If you could please do us a favor and post the size of the table (width="" height="") and the image (### x ###) we can see if this is the case and then change it around for you.
Reply:try changing the margin or padding property of the table.
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
adjust the cellpadding or cellspacing.
table cellpadding="0" cellspacing="0"
if that does not work there could be margins or padding assigned to the image or table cell.
Reply:I'm not exactly clear on what you want to do. If your image is not a square or rectangle, unless you turn your image into a transparent gif, all images will otherwise display inside of a rectangle with a white background.
It doesn't matter whether you display your image in a table or not. Unless your image background is the same color as your table cell background or your page background, your images will always have a white background.
Here's a link to a good tutorial on how to save an image as a transparent gif for the web. Gif images, transparent or otherwise can only display 256 colors so the results are somewhat limited. But, it may be just the solution to your problem.
http://www.absolutecross.com/tutorials/p...
If you are experienced with png images, you could also save your image as a 24-bit png, but because Internet Explorer 6 and lower doesn't support transparent png images directly, it would still take 50 or so lines of a javascript workaround script code to force older IE browsers to display pngs without the white background.
Reply:make the image the same size as the table, or vice versa, make the table the same size as the image, therefore you will get no whitespace between the image and the tables borders.
If you could please do us a favor and post the size of the table (width="" height="") and the image (### x ###) we can see if this is the case and then change it around for you.
Reply:try changing the margin or padding property of the table.
How do I change an mp3 file into HTML code for use on myspace?
I would like to use my own music on my myspace page and in the help page at myspace it says to create the code then cut and paste to my page. The problem I'm having is that I have no idea how to mess with html. I have downloaded several programs that claim to help but all they have helped me get is a headache. Please Help Me!!!
How do I change an mp3 file into HTML code for use on myspace?
first, upload your file somewhere. geocities dont accept .wma or .mp3. what i did was convert the mp3 song into flash so it is now a .swf file. geocities accepts .swf files. further more, by converting to .swf, you can set the sound quality. remember the higher the quality, the bigger the file size..
you must consider those people who are not using broadband and wish to view your site. they will be frustrated and may not hear the song be
%26lt;object width="1" height="1"%26gt;
%26lt;param name="movie" value="http://www.geocities.com/youruser...
%26lt;embed src="http://www.geocities.com/youruserid... width="1" height="1"%26gt;
%26lt;/embed%26gt;
%26lt;/object%26gt;
Reply:You can't actually change the MP3 file into HTML. I do not use myspace codes but I assume how it works is that you find a site that hosts the song that you want to play in your profile and allows you to use their bandwidth on myspace. Many sites are specifically for myspace and freely give out myspace html codes for this very purpose.
Reply:IMBED SRC="then your source.mp3%26gt;
yeah das how u do it!!! or try to go to music an den itll tell u a whole latta stuff!!!!
Reply:%26lt;IMBED SRC="then your source.mp3%26gt;
That SHOULD work.
Reply:firstly, you got to upload your mp3 to http://www.upload2.com/.
here..upload your file.
then, take note of the mp3 link and copy and paste into this code..
%26lt;embed
src="here you paste your mp3 file"
width="50%"
height="50%"%26gt;
%26lt;/embed%26gt;
More information about how to put sound into your web is here%26gt;
http://www.w3schools.com/media/media_bro...
Good luck!
love song lyrics
How do I change an mp3 file into HTML code for use on myspace?
first, upload your file somewhere. geocities dont accept .wma or .mp3. what i did was convert the mp3 song into flash so it is now a .swf file. geocities accepts .swf files. further more, by converting to .swf, you can set the sound quality. remember the higher the quality, the bigger the file size..
you must consider those people who are not using broadband and wish to view your site. they will be frustrated and may not hear the song be
%26lt;object width="1" height="1"%26gt;
%26lt;param name="movie" value="http://www.geocities.com/youruser...
%26lt;embed src="http://www.geocities.com/youruserid... width="1" height="1"%26gt;
%26lt;/embed%26gt;
%26lt;/object%26gt;
Reply:You can't actually change the MP3 file into HTML. I do not use myspace codes but I assume how it works is that you find a site that hosts the song that you want to play in your profile and allows you to use their bandwidth on myspace. Many sites are specifically for myspace and freely give out myspace html codes for this very purpose.
Reply:IMBED SRC="then your source.mp3%26gt;
yeah das how u do it!!! or try to go to music an den itll tell u a whole latta stuff!!!!
Reply:%26lt;IMBED SRC="then your source.mp3%26gt;
That SHOULD work.
Reply:firstly, you got to upload your mp3 to http://www.upload2.com/.
here..upload your file.
then, take note of the mp3 link and copy and paste into this code..
%26lt;embed
src="here you paste your mp3 file"
width="50%"
height="50%"%26gt;
%26lt;/embed%26gt;
More information about how to put sound into your web is here%26gt;
http://www.w3schools.com/media/media_bro...
Good luck!
love song lyrics
What is the HTML code for adding your own header image in Livejournal?
The theme style is Mixit for an old basic account. Also, I have no idea if the CSS uses S1 or S2.
What is the HTML code for adding your own header image in Livejournal?
To my knowledge, Mixit is only available as an S2 style. In the S1 system, you had to use a series of codes/overrides to change the style, unlike the html/css you can use in S2.
As for adding a header, this community might help you:
http://community.livejournal.com/s2expre...
There's also a post on how to change the header image here:
http://community.livejournal.com/s2howto...
I'm currently using a variation of a Mixit layout from here:
http://community.livejournal.com/thefulc...
In my opinion, they're some of the best layouts around - and the designer, grrliz, makes it really easy to alter things such as the header.
What is the HTML code for adding your own header image in Livejournal?
To my knowledge, Mixit is only available as an S2 style. In the S1 system, you had to use a series of codes/overrides to change the style, unlike the html/css you can use in S2.
As for adding a header, this community might help you:
http://community.livejournal.com/s2expre...
There's also a post on how to change the header image here:
http://community.livejournal.com/s2howto...
I'm currently using a variation of a Mixit layout from here:
http://community.livejournal.com/thefulc...
In my opinion, they're some of the best layouts around - and the designer, grrliz, makes it really easy to alter things such as the header.
How can I delete the memory of the websites I went to on the html pull down thingy?
You know like when you type something like my the it gives you options to site you already went to like myspace and stuff. I need to delete it bcuz I went on mypace on accident and I'm not allowed! Please help me!
How can I delete the memory of the websites I went to on the html pull down thingy?
Use "Tools" "Internet Options" "Delete History" and "Delete Temp Files". You may also want to use "Delete Cookies" as a complete wash for this site.
Reply:go to tools on the file menu, then internet options, then delete history
Reply:what ^ said
How can I delete the memory of the websites I went to on the html pull down thingy?
Use "Tools" "Internet Options" "Delete History" and "Delete Temp Files". You may also want to use "Delete Cookies" as a complete wash for this site.
Reply:go to tools on the file menu, then internet options, then delete history
Reply:what ^ said
Html code that hides everything on Myspace Music page so I can code from scratch?
I've seen that there is a code out there that hides everything on a myspace page so you can work on it from scratch with your html code. The only problem is I have a myspace music account and would like to know if there is a code for that?
Html code that hides everything on Myspace Music page so I can code from scratch?
Never use anything with the word "wacko" or "pimp" in it.
Anyway, "starting from scratch" would mean clearing all your html out of your profile's editor, but if you wanna hide everything, just use this gen. There's one for the right column, %26amp; one for the left.
Left Column:
http://www.abrax.us/Katamari/LeftColumnG...
Right Column:
http://www.abrax.us/Katamari/RightColumn...
Reply:http://www.mywackospace.com/myspace-gene...
click the section you want to leave out and click generate after that.
Html code that hides everything on Myspace Music page so I can code from scratch?
Never use anything with the word "wacko" or "pimp" in it.
Anyway, "starting from scratch" would mean clearing all your html out of your profile's editor, but if you wanna hide everything, just use this gen. There's one for the right column, %26amp; one for the left.
Left Column:
http://www.abrax.us/Katamari/LeftColumnG...
Right Column:
http://www.abrax.us/Katamari/RightColumn...
Reply:http://www.mywackospace.com/myspace-gene...
click the section you want to leave out and click generate after that.
How can I create great looking html mails to market my products?
You mean spam or informative e-mails that you send when people specifically request information on your products? When so many people block HTML e-mails that may contain viruses or Trojans, it may not be worth the effort, but you can create HTML in Word or FrontPage or other web page editor and copy and paste it into emails Word has a menu option to send as e-mail
greeting cards
greeting cards
What are the Functional and non-functional Project Requirement when creating a web site using html and?
What are the Functional and non-functional Project Requirement when creating a web site using html and javascript?
What are the Functional and non-functional Project Requirement when creating a web site using html and?
In systems engineering and requirements engineering, non-functional requirements are requirements which specify criteria that can be used to judge the operation of a system, rather than specific behaviors. This should be contrasted with functional requirements that specify specific behavior or functions. Typical non-functional requirements are reliability, scalability, and cost. Non-functional requirements are often called the ilities of a system. Other terms for non-functional requirements are "quality attributes" and "quality of service requirements".
Functional requirements- define the internal workings of the software: that is, the calculations, technical details, data manipulation and processing, and other specific functionality that show how the use cases are to be satisfied.
Non functional - They are supported by non-functional requirements, which impose constraints on the design or implementation (such as performance requirements, quality standards, or design constraints).
So non functional would be cost, quality, expertise of programmers.
Functional would be the actually programming in HTML and the inner workings of the website.
What are the Functional and non-functional Project Requirement when creating a web site using html and?
In systems engineering and requirements engineering, non-functional requirements are requirements which specify criteria that can be used to judge the operation of a system, rather than specific behaviors. This should be contrasted with functional requirements that specify specific behavior or functions. Typical non-functional requirements are reliability, scalability, and cost. Non-functional requirements are often called the ilities of a system. Other terms for non-functional requirements are "quality attributes" and "quality of service requirements".
Functional requirements- define the internal workings of the software: that is, the calculations, technical details, data manipulation and processing, and other specific functionality that show how the use cases are to be satisfied.
Non functional - They are supported by non-functional requirements, which impose constraints on the design or implementation (such as performance requirements, quality standards, or design constraints).
So non functional would be cost, quality, expertise of programmers.
Functional would be the actually programming in HTML and the inner workings of the website.
How can i assign flexible width and hight attributes to a pictures in HTML?
I have an image that has a specific hight and width attribute hight="250" and width="230" but i want to change the image within my server and therefore change the image on my website but the new image has different dimensions. What should i assign to the value of Hight and width so that it changes with the value of the original file?
How can i assign flexible width and hight attributes to a pictures in HTML?
You need to do some server side programming that will dynamically create the height and width attriibutes of the image that you would like and then add the attributes to the image tag before rendering the HTML down to the client. It is hard to give examples since I don't know what language you are using.
Reply:The size attributes, 250, and 230 are the dimensions of the displayed image, they are not necessarily the size of the current image, it will get scaled to fill a box 250 x 230. If you put a new image on the server with the same name as the current one (and then remove the current one) it will be displayed at the same size as the current picture, no matter what size the actual size of the new image.... hope that makes sense.
I'm pretty sure thats what you are trying to do....
A good idea is to rename the image that you are replacing, add .old onto the end of the filename. Then upload the new image (make sure it is exactly the same name as the image you are replacing (and you have renamed :) ). Also make sure you put it in exactly the same directory as the current image. Now when you open you page you will see your new image in place of the old one, it will be the same size on the page and wont make other items on the page get moved around and reorganised.
How can i assign flexible width and hight attributes to a pictures in HTML?
You need to do some server side programming that will dynamically create the height and width attriibutes of the image that you would like and then add the attributes to the image tag before rendering the HTML down to the client. It is hard to give examples since I don't know what language you are using.
Reply:The size attributes, 250, and 230 are the dimensions of the displayed image, they are not necessarily the size of the current image, it will get scaled to fill a box 250 x 230. If you put a new image on the server with the same name as the current one (and then remove the current one) it will be displayed at the same size as the current picture, no matter what size the actual size of the new image.... hope that makes sense.
I'm pretty sure thats what you are trying to do....
A good idea is to rename the image that you are replacing, add .old onto the end of the filename. Then upload the new image (make sure it is exactly the same name as the image you are replacing (and you have renamed :) ). Also make sure you put it in exactly the same directory as the current image. Now when you open you page you will see your new image in place of the old one, it will be the same size on the page and wont make other items on the page get moved around and reorganised.
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
How do I save optimized as html in Image Ready without it pixelizing the gradients and images my page?
It's only doing it slightly but it doesn't look as good. I'm using 7.0
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
When you're saving the image "for the web" you should see a dialog where you can adjust the quality of the image. For better gradients, use jpeg around a quality of 45 or higher.
Since you mention html, I'm guessing you're doing a page layout and it should be sliced up so you have the elements broken up. The html is just the web page code.
If you're doing a background gradient for your web page, you only need a slice of it that's going to repeat, not the whole image, so you can have a quality image and a small file size.
flower arranging
It's only doing it slightly but it doesn't look as good. I'm using 7.0
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
When you're saving the image "for the web" you should see a dialog where you can adjust the quality of the image. For better gradients, use jpeg around a quality of 45 or higher.
Since you mention html, I'm guessing you're doing a page layout and it should be sliced up so you have the elements broken up. The html is just the web page code.
If you're doing a background gradient for your web page, you only need a slice of it that's going to repeat, not the whole image, so you can have a quality image and a small file size.
flower arranging
Subscribe to:
Posts (Atom)