Looking for the most easy way to position images on a page!?

Hi, I'm looking for the most easy way for exact position a lot of PNG images on a web page. Input appreciated!
Thanks!

Basic 1-col layout with 3 evenly spaced boxes:
http://alt-web.com/TEMPLATES/Basic-1-col-fixed.html
CSS Floats and Margins tutorial -
http://alt-web.com/DEMOS/3-CSS-boxes.shtml
Float left & float right  images with wrapping  text
http://alt-web.com/DEMOS/CSS2-Captions-on-floated-images.shtml
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Looking for the most econmical way of tying domain name to mobileme iweb

    Hi all, I currently have a few sites that are hosted on mobileme, and I used the DynDNS services to 1) register a domain name (15$) and 2) create a webhop (CNAME) from the domain to the mobileme site (30$). So that's 45$ per year per site. Is there a more economical way of doing the same thing (without running my own server)? I have a handful of brochure sites to post, and I am looking to cut costs. Thx!!!
    coocoo

    No. Look at GoDaddy and see and I think that you will find that what OT has said is correct.
    If you purchase a domain name from them, depending on what ending it is - .com, .co.uk, .net etc, then you just pay for the cost of the registration for one year or two years, which does work out at $7.95 per YEAR depending on the domain name you get and this will be excluding any hosting or e-mail packages. E-mail does cost extra though.
    If you just register your domain name, then you can use CNAME forwarding or web forwarding at no extra cost. So none of this adding $29 for the privilege of using CNAME forwarding - GoDaddy does not do this and you get it when you register your domain name.
    Once you have the domain name registered, all you do is set up a new CNAME and point the 'www' part of your domain to web.me.com which is your MobileMe host and it will be forwarded to your site.
    I use GoDaddy myself and have no problems whatsoever.
    If you have one MobileMe account, then you have the option of entering a domain name into the Personal Domain Name settings - you can do this once for every MobileMe account and can then use CNAME forwarding at your domain registrar to forward your domain name to your MobileMe account.
    However, you can still publish as many sites as you like to MobileMe, but your url will be http://web.me.com/username/sitename, unless you then use masked or unmasked web forwarding to link your domain name to it if you wish.

  • Hey. anyone knows how to synchronize the different sounds in a song the most easy way?

    hey. anyone knows how to synchronize the different sounds in a song the most easy way?

    Play better... just kidding.  Set an appropriate quantize value for all the regions in the inspector window. If you are doing live playing and need to synch to that it is MUCH more complicated. If you're new at this it might actually be easier to re-play it.

  • I have an Apple Retina Pro Notebook and am looking for the most highly recommended compatible wireless printer.  Do you have any recommendations?

    I have an Apple Retina Pro Notebook and am looking for the best compatible wireless printer to use with it.  Do you have any recommendations?

    "WiFi Wireless Printer" seems to give Users the feeling that they somehow print directly from their computer to the Printer. That is NOT how it works.
    To make a WiFi Wireless Printer work, you need to make it a participant on your network, by providing the Network_name and the Password. It then becomes a peer of your MacBook on your home Network, and you can create a Print Queue for it in Add-a-Printer.
    There is no particular advantage to this over, say, an Ethernet Printer -- except that you don't have a Physical cable to string.

  • Looking For The Most Incredible Guitar Plugin !

    wondering what people are using for guitars. acoustic/ srat/ hollow body etc. kinda like if bfd had a guitar plugin. lots of dynamics ,clean samples with lots of dynamics and can sound like a real guitar if played well on the keys , not looking for loops!!! something i can play. the logic guitars are decent but the next next level. appreciate all feedback.
    thanks

    I believe there is still a bit of a gap in the market here (suprisingly), but the one I just demo'd was very very good...
    Real Guitar (for all things acoustic): http://www.musiclab.com/products/realgtr_info.htm
    Real Strat (for electric & there's a Les paul too): http://www.musiclab.com/products/realstrat_info.htm
    You can download the demos and I just used the Steel String acoustic on something and it was absolutely excellent (and I'm a very fussy guitarist). Very tempted to buy myself...

  • Looking for the brighter red pixel of an image

    Hi, I need to find the brighter red pixel of an image. I tried this code, but the value of each pixel seemed to be the same (zero).
    public static void findBrighterRedPoint(Image i, ImageObserver o){
         int redMax = 0; //0 to 255
         int xMax = 0;
         int yMax = 0;
         PixelGrabber pg = new PixelGrabber(i,0,0,i.getWidth(o),i.getHeight(o),true);
         ColorModel cm = pg.getColorModel();
         for(int a=0;a<pg.getHeight();a++){
              for(int c=0;c<pg.getWidth();c++){
                   if(cm.getRed(((a-1)*pg.getWidth()+c)) > redMax){
                        redMax = cm.getRed(((a-1)*pg.getWidth()+c));
                        xMax=c;
                        yMax=a;
                   if(f==(pg.getHeight()-1) && c==(pg.getWidth()-1)){
                   System.out.println("Red bound max value: "+cm.getRed(((a-1)*pg.getWidth()+c))+" Arrow: "+a+" Collumn: "+c);
    }//method endThanks for some help...
    Edited by: juanma268 on Jul 25, 2008 5:45 PM

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class LookingForRed extends MouseMotionAdapter {
        JLabel red, green, blue;
        BufferedImage image;
        public void mouseMoved(MouseEvent e) {
            Point p = e.getPoint();
            int rgb = image.getRGB(p.x, p.y);
            red.setText(String.valueOf(  (rgb >> 16)&0xff));
            green.setText(String.valueOf((rgb >>  8)&0xff));
            blue.setText(String.valueOf( (rgb >>  0)&0xff));
        public static void findBrighterRedPoint(Image i, ImageObserver o){
            int redMax = 0; //0 to 255
            int xMax = 0;
            int yMax = 0;
            int w = i.getWidth(o);
            int h = i.getHeight(o);
            int[] pixels = new int[w*h];
            PixelGrabber pg = new PixelGrabber(i,0,0,w,h,pixels,0,w);
            try {
                pg.grabPixels();
            } catch(InterruptedException e) {
                System.out.println("interrupt");
            ColorModel cm = pg.getColorModel();
            for(int a=0;a<pg.getHeight();a++){
                for(int c=0;c<pg.getWidth();c++){
                    int index = a*pg.getWidth()+c;
                    int pixel = pixels[index];
                    if(cm.getRed(pixel) > redMax){
                        redMax = cm.getRed(pixel);
                        xMax=c;
                        yMax=a;
                    if(a==(pg.getHeight()-1) && c==(pg.getWidth()-1)){
                        System.out.println("Red bound max value: "+redMax+
                                   " Arrow: "+yMax+" Collumn: "+xMax);
        private void showGUI(BufferedImage image) {
            this.image = image;
            ImageIcon icon = new ImageIcon(image);
            JLabel label = new JLabel(icon, JLabel.CENTER);
            label.addMouseMotionListener(this);
            JPanel panel = new JPanel(new GridBagLayout());
            panel.add(label, new GridBagConstraints());
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(panel);
            f.add(getLabelPanel(), "Last");
            f.setSize(300,300);
            f.setLocation(200,200);
            f.setVisible(true);
            findBrighterRedPoint(image, label);
        private JPanel getLabelPanel() {
            red = new JLabel();
            green = new JLabel();
            blue = new JLabel();
            Dimension d = new Dimension(45, 25);
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,2,2,2);
            gbc.weightx = 1.0;
            addComponents("r =", red,   panel, gbc, d);
            addComponents("g =", green, panel, gbc, d);
            addComponents("b =", blue,  panel, gbc, d);
            return panel;
        private void addComponents(String s, JLabel jl, Container c,
                                   GridBagConstraints gbc, Dimension d) {
            gbc.anchor = GridBagConstraints.EAST;
            c.add(new JLabel(s), gbc);
            jl.setPreferredSize(d);
            gbc.anchor = GridBagConstraints.WEST;
            c.add(jl, gbc);
        public static void main(String[] args) {
            LookingForRed test = new LookingForRed();
            BufferedImage image = test.makeImage();
            test.showGUI(image);
        private BufferedImage makeImage() {
            int w = 200, h = 200;
            int type = BufferedImage.TYPE_INT_RGB;
            BufferedImage image = new BufferedImage(w, h, type);
            int[] data = new int[w*h];
            int x = 3*w/4;
            int y = 3*h/4;
            System.out.println("Max red value should appear at " +
                               "x = " + x + "  y = " + y);
            int a = 255;
            for(int j = 0; j < h; j++) {
                int b = j*255/(h-1);
                for(int k = 0; k < w; k++) {
                    int r = (j == y && k == x) ? 255 : 127;
                    int g = k*255/(w-1);
                    data[j*w + k] = ((a & 0xff) << 24) |
                                    ((r & 0xff) << 16) |
                                    ((g & 0xff) <<  8) |
                                    ((b & 0xff) <<  0);
            image.setRGB(0,0,w,h,data,0,w);
            return image;
    }

  • Upgrading memory, all internal, not looking for the most expensive route though, suggestions?

    250 GB SATA Disk
    4GB
    ^ Installed
    I want to upgrade all

    You can certainly install a larger HDD - up to 1 TB. You can expand RAM to 8 GBs: Two - 204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMMs to replace what you now have.
    Visit OWC to find both drives and memory upgrade kits as well as tutorials for replacing.
    You can also install their Disk Doubler that lets you replace the optical drive with a second internal drive that can be either a HDD or an SSD.

  • The most compatible  way of offering short movies on a website?

    Hi everyone,
    I am working on a website which offers links to short movies
    which the admin has uploaded. they are in mwv/mpg/avi format. I am
    using this object method, I can see them on my systems, but the
    client cannot make it to work on their systems. I am looking for
    the most compatible way of linking and displaying short movies on
    the site. work with PC and mac.
    this is my current method that apparently is not fully
    compatible:
    <cfoutput><embed src="Media/#MediaParam#"
    width="408" height="354" autostart="1"
    showstatusbar=1></embed></cfoutput>
    any help is appreciated in advance..

    can the data go from the drive direct to the ATV2?
    no.
    iTunes must be running to fetch and serve the content to ATV.
    I ask as its far easier to connect a ATV2 and a Network drive via cat5, however itd be nice to not have to plug a mac in as well.
    if your wireless network is n-capable and doesn't suffer interference problems, that scenario might work.
    Possible try to get a older ATV?
    good luck with that they are hard to come by. try eBay or something.

  • What is the most reliable way to run one Windows accounting program in Osx 10.5.8?

    I have a simple Windows application where I basically do my accounts. I do not want to tie up my Imacs resources with running a full Windows Os "emulation" like Paralells or VMware Fusion just to run a simple accounting program.
    I have heard about apps that can run one windows application at the time through a kind of Osx Application which emulates windows some how. Is is true that this is a better way of running my accounting program? Is it reliable? What I do is to punch in invoices and print out reports basically. How much resources does this "consume" to run it in "one simple application mode" in comparison with for example Paralells?
    And what is the term for running windows in "one simple application mode"?

    I guess you could try the free trial of CrossOver. http://www.codeweavers.com/products/crossover/ You did not say what app you want to run so it is difficult for us to recommend crossover as being able to run the app.
    But your question is that you are looking for the "most reliable" way to run a Windows program. In my opinion you need Parallels or Fusion. These run the real Windows OS so my thinking is it is the "most reliable" method of running a Windows app on an Apple computer, other than Boot Camp.
    But you said you don't want Parallels. This is probably why you have not received any responses. You eliminated the most reliable and easiest method, in my opinion, when you initially posted. Parallels does not consume any resources until you start it up to use your app. You can close it after you are done with your app. Of course hard drive space is required for storing the OS, your app, and data. But you still need to store your app and data regardless of method you choose.
    One more thing, Parallels and Fusion create a virtual machine for running Windows.
    So my recommendation, use Parallels or Fusion.

  • Hey I have just downloaded pages and I am looking for the glasses template that you shown in photos

    I am looking for the glasses template that shown on photo lab of Pages? somehow I am unable to find out them

    Hey,
    When I saw Pages app in apple store, it shows some photos of "how that app will work and.. what are the contents they havein it". I just wanna to make the documet like they have shown in the photographs .... the tamplate of Cariati glass, I thought pages app will have ready tamplates of glasses... it is one of the most stunning template I have ever seen... please help me for to find where they are..
    here i will attach a screen shot ...
    I wanna make the same documents as they show here...

  • Looking for the best solution for downgrading a database from 11.2 to 11.1

    we have an install of 11.2 grid and have made several attempts at adding 11.1 binaries and using the 11.2 infrastructure. we patched, etc... but all of our attempts failed in getting 11.1 to work across the cluster.
    we have decided to make all of the installs version 11.1.
    I am looking for the most straight forward approach to migrate our 11.2 down to 11.1 with the least amount of downtime.
    thanks, tom

    Hi Tom;
    Please check below note
    Master Note For Oracle Database Downgrade [ID 1151427.1]
    How To Downgrade From Database 11.2 To Previous Release [ID 883335.1]
    I belive it will answer all your question.
    Please also check below links:
    http://blogs.oracle.com/db/2010/09/master_note_for_oracle_database_downgrade_doc_id_11514271.html
    Regard
    Helios

  • Until the most recent update when the autocomplete location bar was selected, it "went" with no further clicking. Now I have to click the refresh arrow. It won't even work with the return. How can I make it work the old easier way?

    Until the most recent update when the url that I wanted in the autocomplete location bar was selected, it "went" with no further clicking. Now I have to click the refresh arrow. It won't even work with the return. How can I make it work the old easier way?

    cor-el, thank you so much. That fixed it, but does this mean I can't use AVG Safe Search.Is there a substitute? I do like the security (hopefully real) that it offers. What now? How do I get out of Safe Mode?
    Sherry

  • The most efficient way to search a large String

    Hi All,
    2 Quick Questions
    QUESTION 1:
    I have about 50 String keywords -- I would like to use to search a big String object (between 300-3000 characters)
    Is the most efficient way to search it for my keywords like this ?
    if(myBigString.indexOf("string1")!=1 || myBigString.indexOf("string2")!=1 || myBigString.indexOf("string1")!=1 and so on for 50 strings.)
    System.out.println("it was found");
    QUESTION 2:
    Can someone help me out with a regular expression search of phone number in the format NNN-NNN-NNNN
    I would like it to return all instances of that pattern found on the page .
    I have done regular expressions, in javascript in vbscript but I have never done regular expressions in java.
    Thanks

    Answer 2:
    If you have the option of using Java 1.4, have a look at the new regular expressions library... whose package name I forget :-/ There have been articles published on it, both at JavaWorld and IBM's developerWorks.
    If you can't use Java 1.4, have a look at the jakarta regular expression projects, of which I think there are two (ORO and Perl-like, off the top of my head)
    http://jakarta.apache.org/
    Answer 1:
    If you have n search terms, and are searching through a string of length l (the haystack, as in looking for a needle in a haystack), then searching for each term in turn will take time O(n*l). In particular, it will take longer the more terms you add (in a linear fashion, assuming the haystack stays the same length)
    If this is sufficient, then do it! The simplest solution is (almost) always the easiest to maintain.
    An alternative is to create a finite state machine that defines the search terms (Or multiple parallel finite state machines would probably be easier). You can then loop over the haystack string a single time to find every search term at once. Such an algorithm will take O(n*k) time to construct the finite state information (given an average search term length of k), and then O(l) for the search. For a large number of search terms, or a very large search string, this method will be faster than the naive method.
    One example of a state-search for strings is the Boyer-Moore algorithm.
    http://www-igm.univ-mlv.fr/~lecroq/string/tunedbm.html
    Regards, and have fun,
    -Troy

  • What is the most efficient way to run internet explorer on a mac?

    I have to use I.E. for school along with Outlook.  I run windows for mac and am looking for the cheapest and least invasive way to do so.

    CSS731 wrote:
    Specifically I cannot attach files such as students grades or send requests to our photocopy center.  I works great on a pc but won't work on a mac.  Most at my institution thumb their noses at macs and I have been told directly they will not support mac or OSX.  I have tried using firefox but have been told by my colleagues that IE is the only browser that works.
    What you are running into is unfortunately rather common in business, education, and government. What happened is that your school computerized their operations in the late 1990s to early 2000s, when Internet Explorer on Windows XP was the most common web browser. Websites were coded to take advantage of technologies that are unique to IE. Once all these institutions and businesses finished their work, they thought they were done and they moved on.
    But in the time since then, the world changed around them. The Web moved towards "standards compliance," which means writing web sites for the CSS3 and HTML5 standards. Not for old Microsoft-only Internet Explorer features. If a web site is standards compliant, it will work on any browser that is also standards compliant. That would include every popular browser today: Apple Safari, Mozilla Firefox, and Google Chrome. (As well as the latest Internet Explorer for Windows, which is much better than it used to be.)
    Standards compliance was a wonderful revolution, because it meant we could use any browser. It also paved the way for the iOS and Android mobile device boom, since they need to use mobile web browsers and those are not Internet Explorer.
    The big problem is that your institution, like many others in education, business, and government, either doesn't want to upgrade their systems or doesn't have the budget. The system they built in 1996 or 2002 is being maintained, but it isn't being modernized. Therefore, it is not standards compliant. That's why it doesn't work with Firefox or Safari.
    I am sure that both you and they have noticed that they have fallen behind, because it's very easy to show this. If you go to any modern web site...Facebook, Twitter, Flickr, Yahoo, Dropbox, every photo sharing site, every web forum, etc. it is extremely easy to upload attachments no matter what web browser you use.
    Of course, they'll get very defensive if you try to tell them that their systems are totally out of date and any browser should be able to upload attachments. Even if that's true, they may not be able to overhaul their systems any time soon. Maybe they would like to, but they can't get the funding. The problem for them is that more and more devices are being used on their network which don't have Internet Explorer, like Macs, phones, and tablets, and it's revealing the limitations of their system.
    That's the situation. It won't be easy to fix because it requires that the school's systems be modernized. But they really need to be modernized, because as we saw, attachments are no problem on multiple browsers on all the other web sites we use every day.
    If they could update their systems, the benefits would be significant. If their web site became standards compliant, it would automatically support smartphones, tablets, and Mac web browsers with probably very little extra work.

  • What is the most effective way to get my imac 2 ghz intel core duo 2 10.4.11 to be able to run 10.5 and sync with my iphone 4s?

    What is the most effective way to get my imac 2 ghz intel core duo 2 10.4.11 to be able to run 10.5 and sync with my iphone 4s?

    As your Mac should run Snow Leopard provided it has at least 1GB memory, that would be a good deal easier and very much cheaper than trying to find a 10.5 install disc.
    Snow Leopard costs $30 approx from the online Apple store (£26 if you're in UK)
    You'll need to update Tiger to 10.4.11 with the combo installer first (unless you're just erasing the disc and starting fresh) You can then update SL from 10.6.3 to 10.6.8 with its combo installer.
    For comparison, 10.5 Leopard is currently running about $130 from Apple (if still available) and more on Amazon etc.
    This info for Leopard courtesy of TexasMacMan;
    Mac OS X 10.5 Leopard installation system requirements
    http://support.apple.com/kb/TA24950
    Leopard is no longer available at the Apple Store but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753).
    If you can't obtain a retail install DVD from Apple, look on eBay or Google the installer part numbers to possibly find at an on-line store. Here's what to look for:
    MB427Z/A  Leopard 10.5.1 install DVD
    MB576Z/A  Leopard 10.5.4 install DVD
    MB021Z/A  Leopard 10.5.6 install DVD (single user)
    MB022Z/A  Leopard 10.5.6 install DVD (5-user family pack)
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update

Maybe you are looking for

  • What are the Uses of Revision Level

    Dear All, I have been searching for articles pertaining to "Revision Level" in the Material Master Record and found out that revision level is used purposely in Engineering Change Management and Document Management System. Is this true? I want to kno

  • What does "You do not have sufficient access privileges" mean?

    Hello Gurus! I am wondering what does "You do not have sufficient access privileges" mean? I have a G$ with 2 internal hard drives. One has OSX 10.3.9 loaded on it and the other has OSX 10.4.7 loaded on it. When I boot up in 10.4.7 and try to access

  • Saving itunes songs to a external hard drive

    I currently have about 17,000 and I want to transfer my songs to an external hard drive. My problem though is that there are some songs that have scripts on them and will not transfer. My question is.... are there any good sites that I can use to cha

  • UPDATED PHONE DOESN'T WORK

    I have an iphone 4 did update last Tuesday saids I need a sym card. been on phone and at store all last week,no one seems to know what the problem is. Have Engineers working on it. They said they never seen this before? got a new phone same thing. Sa

  • My g5 tells me to restart - then won't.

    my g5 tells me to restart - then won't. Also it will not start in safe mode - i just get the same "your computer needs restarting" message