Forum     

Go Back   Digit Technology Discussion Forum > Portables, Peripherals and Electronics > QnA (read only)
Register FAQ Calendar Mark Forums Read

QnA (read only) Mods please help transfer the contents of this forum to proper sections. :)


 
 
LinkBack Thread Tools Search this Thread Display Modes
Old 11-02-2007, 01:52 AM   #1 (permalink)
In The Zone
 
Join Date: Oct 2006
Location: Jabalpur
Posts: 325
Arrow HTML Image Problem


Can anyone please solve my problem. The problem is i want to write the text at the upper side of the image but it is automatically written in the down side. please solved the problem.

boosters is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 11-02-2007, 02:09 AM   #2 (permalink)
HELP AND SUPPORT
 
rakeshishere's Avatar
 
Join Date: Jun 2006
Posts: 1,603
Default Re: HTML Image Problem

Give an attribute to the image by typing "align=top" without quotes

Last edited by rakeshishere; 11-02-2007 at 07:37 AM.
rakeshishere is offline  
Old 11-02-2007, 07:35 AM   #3 (permalink)
Human Spambot
 
Join Date: Nov 2004
Location: Madurai
Posts: 2,349
Default Re: HTML Image Problem

In the <img ...> tag, add 'align=top' (no quotes)

Arun
sakumar79 is offline  
Old 11-02-2007, 11:33 AM   #4 (permalink)
Google Bot
 
Pathik's Avatar
 
Join Date: Aug 2005
Posts: 9,772
Default Re: HTML Image Problem

i think u shd add align="top"
Pathik is offline  
Old 11-02-2007, 03:13 PM   #5 (permalink)
In The Zone
 
Join Date: Sep 2006
Posts: 319
Default Re: HTML Image Problem

ya try giving the align=top if u want it to be on right side try valign=left
__________________
Visit now ;)
www.indiandevs.com - for great free designs :)
www.indiandevs.com/technoworld/ for latest technology news and tricks
Siddharth Maheshwari is offline  
Old 11-02-2007, 08:24 PM   #6 (permalink)
In The Zone
 
Join Date: Oct 2006
Location: Jabalpur
Posts: 325
Default Re: HTML Image Problem

thank you very much it is working.
boosters is offline  
Old 11-02-2007, 08:27 PM   #7 (permalink)
In The Zone
 
Join Date: Sep 2006
Posts: 319
Default Re: HTML Image Problem

You r most welcome(from all digitians)
__________________
Visit now ;)
www.indiandevs.com - for great free designs :)
www.indiandevs.com/technoworld/ for latest technology news and tricks
Siddharth Maheshwari is offline  
Old 12-02-2007, 10:06 PM   #8 (permalink)
In The Zone
 
Join Date: Oct 2006
Location: Jabalpur
Posts: 325
Default Re: HTML Image Problem

The problem again comes with the text, see what happen in the image



This is what the image say that when i write the text in to top of the image it automatically down to the base of the image but i don't like this why the text is not continous, it takes 3 or 4 paragraph.

This is my coding image.



Please check the coding that is write or wrong, I am using Dreamweaver 8.

Please help
__________
Sorry Mission IMG Complete from this site "http://www.quackit.com/html/tutorial/html_images.cfm"

Last edited by boosters; 12-02-2007 at 10:06 PM. Reason: Automerged Doublepost
boosters is offline  
Old 13-02-2007, 07:54 AM   #9 (permalink)
Human Spambot
 
Join Date: Nov 2004
Location: Madurai
Posts: 2,349
Default Re: HTML Image Problem

Perhaps you can create a table and put the image in first column and text in second column.

Arun
sakumar79 is offline  
Old 13-02-2007, 11:07 AM   #10 (permalink)
144
Broken In
 
144's Avatar
 
Join Date: Sep 2004
Location: classified
Posts: 178
Default Re: HTML Image Problem

try this instead:
-------------------------------------------
<div id="img_container">
<p><img src="images/1163341964_djpinokio.jpg" width="139" height="165" class="spec" alt="" /> Here is a here is a long quotation here is a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote a long quotation here is a long quote here is a long quote here is a long quote here is a longquote here is a long quote here is a long quote</p>
</div>
-------------------------------------------

IN THE HEAD SECTION OF YOUR PAGE INSERT THIS STYLE

<style type="text/css" media="all">
#img_container img.spec{
float:left; padding: 0 1em 0.3em 0;
}
</style>

------------------------------------------
Table-less designs backed with CSS are better.

http://www.westciv.com/style_master...oil/dead_layout
http://davespicks.com/essays/notables.html
http://www.workingwith.me.uk/tablefree/why
http://www.hotdesign.com/seybold/index.html
__________________
On a long enough timeline, the survival rate for everyone drops to zero

Last edited by 144; 13-02-2007 at 01:44 PM.
144 is offline  
Old 15-02-2007, 07:14 PM   #11 (permalink)
Human Spambot
 
tuxfan's Avatar
 
Join Date: Feb 2004
Location: Mumbai
Posts: 2,653
Default Re: HTML Image Problem

Code:
<img src="blahblah.jpg" align="left" />
__________________
:: Free hosting and free domain names available in special cases. Conditions apply ::
tuxfan is offline  
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by clinton
- by Charan
- by Krow

Advertisement




All times are GMT +5.5. The time now is 11:54 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2