Txt written into image- photo

Last post 12-02-2005, 2:21 PM by rcroeder. 1 replies.
Sort Posts: Previous Next
  •  12-01-2005, 10:18 AM 13275

    Txt written into image- photo

    Hi - A rather strange thing. Trying to write a txt into a image-photo, using txtframe, insert, edit ect. or even position absolutely dos not work. looks fine untill I put it liveon my web, then txt "moves away" from image - and stand alnone to the right side.
    I really can´t figure out how to do this ? Any ideas ?
  •  12-02-2005, 2:21 PM 13330 in reply to 13275

    Re: Txt written into image- photo

    This is more of a rendering issue and better solved using CSS positioning. This article may or may not help
     
    http://www.builderau.com.au/webdev/graphics/0,39024704,20283355,00.htm

    They use as the example:

    div#test {
        background-image:  url(/images/backgroundimage.JPG);
        background-repeat: no-repeat;
        height: 500px;
        width: 380px;
    }
     
     div#testtext {
        position: relative;
        height: auto;
        width: auto;
        left: 25px;
        top: 200px;
    }
     
    <div id="test"><div id="testtext">Superimposed Text</div></div>

    RC
     
View as RSS news feed in XML