Need help with exporting graphic styles

Hi all.
I'm designing a game for iPad and am using Illustrator CS3 to create the graphics. I created lots of card sized graphics and gave them all the 'RGB Parchment' graphic style which comes with Illustrator.
The document in the picture is (part of) an illustrator file that I created these cards in. If I take one out to another document to edit it and save it as a .png - it comes back different. As you can see in the picture, in the centre are two mock ups I made for a card. The left is an illustrator file 'placed' in the document and the right is the same file but exported as a .png and then placed in.
The .png keeps the transparencies but the shadow is completely different, it's a horrible brown as well as the shape being slightly different and the quality quite low.
I sent the whole mock up picture (which is much bigger) to my iPad and I can still see the lower quality in the right, .png card.
If I want to bring graphics into some software to build the app I can't bring in illustrator files so I cant to create them as .pngs but when they're so different / low quality I don't know what to do. I just want to be able to use that 'RGB Parchement' graphic style and not have it changed so much when I export it.
Can anyone suggest anything? Thanks!

I really am baffled myself this was a drop shadow applied to a rectangel wit the parchment style applied to it on a brown background and the drop shadow was applied with the multiply as the mode.
And then exported from AI as a png?
Why is there an issue and exactly what that issue is I can't see can you explain it or show it better maybe other people have a better idea.
Here it is after being saved without a background but with a dropped shadow created with a multiply blend and then placed on a brown background color? ( iagve it a feather and blur just to see what it looked like.

Similar Messages

  • Need help with buying graphics card and ram for MSI 865PE NEO 2-V

    Hi,
    I want to buy 1GB of ram for motherboard MSI 865PE NEO 2-V I need help with finding correct parts.
    I also want to buy 512Mb or 1GB graphics card.
    as i said before i need help with finding correct ones so they match motherboard, I would appreciate if any one would post link to cheap and fitting parts.
    I found graphics card allready, i just need to know if it will fit.
    the card is
    NVIDIA GeForce 7600 GS (512 MB) AGP Graphics Card
    Thanks for help.

    here you can see test reports for your mobo:
    http://www.msi.com/product/mb/865PE-Neo2-V.html#?div=TestReport

  • Need help with my graphic calculator!!!

    Hello everybody!! I need help with my little program I made.... The problem is that I am unable to use to calculate but it is possible to compile the code!! What should I do?? Thanks in advance.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Aritmetik extends JFrame implements ActionListener{
         private JLabel l1 = new JLabel("Tal1: ", JLabel.LEFT);
         private JLabel l2 = new JLabel("Tal2: ", JLabel.LEFT);
         private JLabel l3 = new JLabel("Resultat",JLabel.LEFT);
         private JLabel l4 = new JLabel(" ", JLabel.RIGHT);
         private JTextField t1 = new JTextField(" ",10);
         private JTextField t2 = new JTextField(" ",10);
         private JButton b1 = new JButton("+");
         private JButton b2 = new JButton("-");
         private JButton b3 = new JButton("*");
         private JButton b4 = new JButton("/");
         public Aritmetik(){
              Container v = getContentPane();
              v.setLayout(new GridLayout(5,2));
              v.add(l1);
              v.add(t1);
              v.add(l2);
              v.add(t2);
              v.add(b1);
              v.add(b2);
              v.add(b3);
              v.add(b4);
              v.add(l3);
              v.add(l4);
              b1.addActionListener(this);
              b2.addActionListener(this);
              b3.addActionListener(this);
              b4.addActionListener(this);
              pack();
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public void actionPerformed(ActionEvent e){
              int tal1 = Integer.parseInt(t1.getText());
              int tal2 = Integer.parseInt(t2.getText());
                   if(e.getSource() == b1){
              if(t1.getText().equals("") || t2.getText().equals(""))
                                       JOptionPane.showMessageDialog(null, "Mata in tal!");
                   else{
                        l3.setText("Resultat ");
                   l4.setText(" " + (tal1+tal2));
                   else if(e.getSource() == b2){
                        int sub = tal1-tal2;
                        l4.setText(" " + (sub));
                   else if(e.getSource() == b3){
                        int multi = tal1*tal2;
                        l4.setText(" " + (multi));
                   else if(e.getSource() == b4){
                        int div = tal1/tal2;
                        l4.setText(" " + (div));
                   public static void main(String[] arg){
                   Aritmetik A =new Aritmetik();

    Here is your problem:
    public void actionPerformed(ActionEvent e){
      int tal1 = Integer.parseInt(t1.getText().trim());  // add the trim()
      int tal2 = Integer.parseInt(t2.getText().trim());  // add the trim()
      if(e.getSource() == b1){
        if(t1.getText().equals("") || t2.getText().equals(""))
          JOptionPane.showMessageDialog(null, "Mata in tal!");
        else{
          l3.setText("Resultat ");
          l4.setText(" " + (tal1+tal2));
      }... Better ...
    public void actionPerformed(ActionEvent e)  throws NumberFormatException {
      String tala = t1.getText().trim();
      String talb = t2.getText().trim();
      if ( tala == null  ||  "".equals(tala)  ||  talb == null  ||  "".equals(talb) ) {
        JOptionPane.showMessageDialog(null, "Mata in tal!");
        return();
      int tal1 = Integer.parseInt(tala);
      int tal2 = Integer.parseInt(talb);
      if(e.getSource() == b1){
        l3.setText("Resultat ");
        l4.setText(" " + (tal1+tal2));
      else if(e.getSource() == b2){
        int sub = tal1-tal2;
        l4.setText(" " + (sub));
      else if(e.getSource() == b3){
        int multi = tal1*tal2;
        l4.setText(" " + (multi));
      else if(e.getSource() == b4){
        int div = tal1/tal2;
        l4.setText(" " + (div));
    }Message was edited by:
    abillconsl

  • Need help with a Spreadsheet style app

    I was just wanting some help in working with developing an app for my iphone... i had previous experience in microsoft visual basic but i don't quite understand this code....
    I am in flight school and trying to develop an app that reflects the weight an balance forms we do... I am stuck on how to do basic multiplication and division with xcode, i have viewed several videos and tutorials but they each do things differently and i can't seem to bring it together into this app.
    So in the picture below.... what i need help with is how to do the following
    from
    aircraft weight * arm = Moment outbound
    front seats * arm = Moment outbound
    to fuel @ landing
    "0" fuel weight = aircraft weight + front seats + rear seats+ Baggage 1 + baggage 2
    If anyone has any ideas or can lend me some tip or places that deal with stuff like this that would be great

    A character class [...] robs some otherwise special codes from their magic. The +, for instance, is interpreted as a plus, not as "repeat ad nauseum" anymore.
    So your try [\d+] will simply match either a single digit or a single plus. The solution is to move the + outside of the character class
    [\d]+
    .. and in that case there is no reason anymore to create a class for just digits, as you got it already.
    The period *needs* to  be escaped, because otherwise it will match *any* character.
    Try this for a change:
    \d+\.\d+

  • Need Help With Exporting EPS Files That Will Be Opened In Another Program

    I am trying to export some files from Illustrator in EPS format, to be used in another program called "Blufftitler". Their documentation is pretty sparse and doesn't go into much detail. It only mentions the following:
    "Limited support
    BluffTitler has limited EPS support. It only imports filled shapes built out of lines and curves from uncompressed, unoptimized EPS files."
    No matter what settings I try in Illustrator when exporting the EPS file, it won't open in Blufftitler, and keeps throwing me errors. I tried Choosing "Illustrator 3" as the format, and turning off the preview option. I also tried "expanding" the shape itself several times too. Is there some other way in Illustrator to just export a bare-bones EPS files without any extras or other stuff that might cause problems with other programs?
    The funny thing is, when I create EPS files with another program, such as Vector Magic, they work fine in Blufftitler - it just seems to have a problem with EPS files created in Illustrator specifically.
    Any help would be greatly appreciated, thanks in advance!

    The main problem is with BluffTitler is it doesn't have a very good eps handler as it can really only import eps files that are about 10k each and are not overly complex. If you look at all the sample .eps files that come with it, each one is about 1 or 2k each. A simple circle in Illustrator, even when saved as v3 without a preview, is around 258k. The reason for the larger file sizes is due to the extra things being saved in the file that aren't even on the page, such as brush presets and graphic styles. The sample .eps files that come with BluffTitler don't have these presets so the files are already smaller.
    Something you may want to try is to open up one of the sample eps files and use that file for your vector work but save the file with a new name. I found that by doing this I could get the files down to a much smaller size. You may also want to setup any vectors in Illustrator first, save them, and then open the files in InkScape, http://www.inkscape.org. From what I've read, InkScape can get you fairly small file sizes so it's something you should check out.

  • Need help with installing Yahoo style flash menu CS5

    I downloaded the Yahoo style menu bar from the the available widgets.  I got the menu bar to show in Dreamweaver, but need help:
    I have trouble understanding how to use the f-source  flash editor to edit the links.
    I don't seem to be able to drop the  f-source.com button from the menu bar.
    The bar  shows up as a tiny bar in IE8, not as I had programmed it in the widget programmer.
    I was instructed to Insert ==> f-source menus ==> Edit menu in Dreamweaver.  Doing this leads to the following message: "Install at least one f-source menu'.  I did install the f-source-UI G file in the Adobe Extension Manager CS5.  What else needs to be installed?  
    My OS is Windows7 and I am working with Dreamweaver CS5.  Please help.
    Thanks,
    Tony Uythoven

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • I have a hp a6814y computer and need help with a graphics card

    okay i wanna upgrade my hp with an actual graphics card, so i can play games without it lagging. i mainly play rts games, like command and conquer generals, etc and about to get company of heros. now i need to know what kind of card i can put in this computer. i would like to put this one in 
    http://www.newegg.com/Product/Product.aspx?Item=N82E16814102824
    i hear people say the min is 300watts and some say 450watts. but then idk, if this card can hook up to my power supplie.
    i just need help getting a very good card for this computer without updating the power supplie

    Hi,
    Check with Athena as they maintain a PC Cross Reference list and see if the power supply that you have selected is compatible with your PC.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Need help with Export workflow.

    Hello again.
    Today I was experimenting with exporting a project using Export QT Movie and QT Conversion.
    My goal is to show a QT project on the web, either 640x480 or 320xx240, depending on how monstrous the file size is.
    My initial impression was that export QT Movie simply generates (I'm guessing) a full size rendering of the project. It's icon is a FC icon. What I did then was an "Open with..." quicktime(pro). This is where I get confused: I know that the next steps are for for preparing the project for sizes, compressions and so on. The export to QT movie seems to be a longer route to get to the settings that you need to use in QT Conversion, which after selecting QT conversion, you have the Format, Use, and Options settings.
    Am I right so far?
    Some background about my project- Easy setup= DV-NTSC. If I look in my browser, my clips are 720x480, 29.97fps, Compressor(?)DV/DVCPRO-NTSC, pixel aspect ratio, NTSC-CCIR 601 and anamorphic is checked.
    I also have still photos motion control stuff, PS tiffs, that do not have anamorphic checked.
    Form here on is where I get confused.
    Under settings, I am selecting DV/dvc-NTSC for compression frame rate 29.97, medium compressor, scan mode, interlaced, and aspect 4:3.
    The filters setting I don't use.
    The size setting I'm trying 320x240 with aspect ratio and de interlace video UNCHECKED.
    Is this a good workflow for the web. I notice on 640x480 my titles (livetype) seem kind of jagged.
    Any help preparing a project for the web would be appreciated. If you need more info let me know.
    Thanks so much.
    Jonathan

    Thanks for the additional comments and ideas.
    In terms of profile, as I mentioned, the intermediates will be going off to the editor (off-site) for editing on his FCP suite.  I'll stick to working in the prescribed HDTV (Rec. 709) space, and I've given him all the detail I can of how I'm working, but crucially I haven't stood at his edit-suite to see how the stuff looks.
    But, he's no newbie, so I'm hoping it'll be OK.
    Blasted shame about the H.264 BluRay not being compatible with QT - I thought I had this whole issue beat until that came along.  It's not a matter of disk space here, but the editor is mithering that the intermediates we are testing, in either PNG, or Animation, and a couple of others, are choking his playback.
    I'm not sure what to say about that, other than to go down this road of trying to squish these intermediates as low as possible without wrecking the look, hence finding that the DNxHD is providing the best solution.  If it had been a SD project, I might well have tried the native H.264, even over our normal PNG workflow.
    So what will play the native H.264 BluRay compressed output?
    Julian.

  • I need help with export settings

    Hi everyone,
    I need help outputting an HD file for presenting a video to a client. I have tried exporting to HD .mov (H.264 codec) and PE keeps crashing (error compiling movie). From what I’ve read here, it’s due to the gargantuan file QT creates and HD space (even though I think I have enough HD available).
    So, I need a recommendation from you on what kind of file to output which will allow me to present the movie to the client in HD. This file is solely for the presentation, I have already published for web (FLV) and YouTube (direct share from PE) and they both worked fine.
    Here are my project specs:
    Timeline:           4:26
    Format:               1920 X 1080 HD
    Timebase:          29.97 frames per second
    OS:                        Windows XP SP3
    Processor:          Intel Core 2 Duo @ 2.66GHz
    RAM:                    4GB
    Project Drive:   250GB disk with 152GB free space internal dedicated project drive (separate from OS)
    Thanks in advance for your help,
    Jose

    Hi Steve, Neale,
    I wanted to follow-up on this post. I came into the office today to run a few tests so I can make sure that I have the correct settings on my camera and PE project for the next time around. Here are few observations I was wondering if you can comment on:
    My Sony camera cannot shoot HDV. The only format it supports is AVCHD, so I'm stuck converting.
    I tried to convert the footage I have to HDV with the software I have (AVS Video Converter and Koyote Soft HD Converter) and neither of the two have an "HDV" conversion setting. I see AVI, MPEG, MOV and many different settings in each (AVI: Hd Video 1080p: H.264AVC, 29.97fps, 4200kbps, Audio MP3, 256 kbps or MPEG: HD Video 1080p - MPEG2, 15000 kbps, 1920X1080, 29.97fps, etc). What should I be looking for?
    I searched for "best file format" in the forum and found various postings from both of you referring to converting to DV-AVI within PE; especially if you have AVCHD footage (which I have). So, I followed directions and converted a file for testing. Then, I created a new project using HDV 1080i 30 settings and imported the converted file. I still get a red line on the timeline. Any thoughts on what I'm doing wrong?
    I also converted the MOV files (shot in HDV 60i with the pro camera) to DV-AVI. I also get a red line on the timeline...
    The DV-AVI converted footage (both cases) doesn't appear to be HD. It looks jagged on the preview window. Is it HD?
    The DV-AVI converted footage is almost double the file size as the MTS (AVCHAD) file (138mb vs. 60mb). Isn't that going to make PE run slower?
    Thanks in advance for your help. I just wanna make sure I do my homework now so I set everything up correctly on the next project.
    Jose
    P.S. I almost forgot! Here's the link to the live video on YouTube: http://www.youtube.com/watch?v=fEkqPmefJV0
    Message was edited by: josejb70 - Added YouTube link

  • Not exactly iweb - need help with a graphic for my site

    This doesn't fit anywhere so dumping it here. I drew by hand a graphic I want to use with iweb to put on my site as my site's logo. Main problem is that getting the background transparent isn't working well as when it was scanned the scanner didn't back the background "pure" white. I have tried adjusting the whitepoint and setting the color depth down, but still no good. I don't know a ton about graphic program use. I have an older copy of graphic converter that came on this powerbook when i got it. I would be fine having the graphic loose the marker look and have solid fill colors - just I am not good enough with computer drawing tools to do it on the computer! So I either need to get a volunteer to help me out, or some help with some detailed instructions to get this to work out... (also I am broke so no cost/shareware is only option here)
    many thanks!!!!
    I can get you a scanned jpg of the pic if needed.

    THANK YOU/___sbsstatic___/migration-images/migration-img-not-avail.png so the tolerance makes it not care so much about the gradations in color? what else is tolerence good for?
    I have a cleaner copy now after someone suggested GIMP, so played with it last night - though couldn't figure out transparency - that was clear on converter- just not cooperative till these wonderful directions.
    So now I know how to do it without messing with the pic, and with messing with it - both good lessons and got a bit brighter color out of the deal.
    many thanks for the straightforward and clear directions, they worked perfectly/___sbsstatic___/migration-images/migration-img-not-avail.png extra strars for you/___sbsstatic___/migration-images/migration-img-not-avail.png

  • Need Help with Corrupted Graphics

    I need help real bad. I have spent the last 2 weeks trying to find the reason for crashing in game (not blue screening but corrupted graphics) where the whole screen goes like a television that isn't tuned in, and then after anywhere between 2 to 5 mins my computer will reboot. I'm wondering if anyone has a similar issue, and if there is a fix. I'll list my system specs and a couple of things I have done that hasn't fixed it.
    AMD64 3200+ 939 90mn
    MSI K8N Neo2 - 1.4 bios
    2 x 512mb Geil UltraX
    Leadtek 6800u
    Audigy
    SuperFlower 14cm 500watt
    I haven't started to overclock my machine yet as I have yet to fix this problem. Everything is running stock. I'm finding that its random. I can play Prince of Persia Warrior Within for hours on end without a problem. Then play Counterstrike Source and it will go to  after about 5 mins. I decided to try benchmarks and 3dmark01 will do the same thing randomly. Even Battle Field will play for about 10 mins and it will just go to the fuzzy screen. I even heard that some Soundblaster Cards cause problems and have tried using the onboard sound, with no effect. I have also disabled AGP SideBand and AGP Fastwrite in the bios, as also this can cause some issues, to no effect. I thought maybe the video card maybe the problem, and threw a crappy 5700 LE in my machine, still with no effect. CPU temp is around 36c (water cooled) and GPU is around 48c. Does anyone have any idea as to why the screen craps out in just about every game I play. I'm running Winxp Pro SP2 with DX9.0c, with the latest Drivers for everything I'm running (mainboard, vga, sound, etc). If you can suggest something, please let me know.

    X-((Well, This sorta sounds like what just happened to me.
    My graphics card decided to take a dump on me. When I was playing a game the graphics went all garbled and everything froze. System rebooted a couple times, and yes it seems the cards fan stoped rotating and it fried.
    So to me, it sounds like your video. But you say you tried changing video cards with no effect.
    Dang.  Sorry I cant think of anything. But on the bright side, your post was bumped.  

  • Need Help with Export to ePub in CS5.5

    I am working on my first ePub in InDesign 5.5. When I go to File—Export for— there is no option for ePub. In fact there is only "Buzzword" and it grayed out. How do I get export for epub?

    In InDesign CS 5.5, it's File > Export > EPUB.
    However, if this is new for you, if you haven't prepared your file properly, it may come out like mush.
    You need to prepare export order, styling of paragraph styles, character styles and object styles, you need to create a TOC style, there are many steps.
    I highly recommend one of these two resources:
    Anne-Marie Concepcion has a video series on Lynda.com for CS5.5:
    http://www.lynda.com/InDesign-CS5-5-tutorials/to-EPUB-Kindle-and-iPad/82258-2.html
    You can get a week trial for free.
    You can also get eBooks from Elizabeth Castro:
    http://www.elizabethcastro.com/epub/

  • I need help with exporting 720p video for youtube.

    Hi everyone, I have been using Adobe premeir for almost a year now and I love it, as its very professional and powerful. I used to edit Standard with no problem, then export the full unconverted file (wmv) and run it though Windows Movie Maker to compress it (haha yeah I know its crazy.) Now that I got a camera capable of shooting HDV I want to use it. Im just wondering the following:
    1.What format should I export with in Adobe Media Encoder? (Original Raw footage files from Camera are MOV formatted)
    2.What should I set the Bitrate to?
    3.How do I export to flash without it being to large of a file (Under 200mb's for a 5 minute video) and have it not choppy or pixelated?
    4.How do I speed up exporting, how many passes should I do?
    5.What overall is the best setup for youtube?
    I also noticed a small glitch, and its when I export normally (full size, no compression) and run it though a compressor it cuts out all of the titles, and just flashes them for a milisecond. Its really odd. It only happens when I export in a certain format in which I cannot quite remember. Anyways.. thanks in advance for helping me. Its very appreciated.
    NineLivesProductions

    perform a search using the term export for web and it should throw up some ideas.
    here's one for starters:
    http://discussions.apple.com/thread.jspa?messageID=2309121&#2309121
    If you're using flip4mac to convert to wmv, the trial stops at 30 seconds - you need at least wmvstudio to export to wmv:
    http://www.flip4mac.com/wmv.htm

  • Need help with exporting iphoto to dvd

    Hi,
    I am trying to export a bunch of albums from iphoto to a brand new dvd-r disc.  I am trying to move the photos to free up more space on the computer. I get the message "there is not enough disk space to complete this operation"  when I try to export just one album (total 826mb).  I still have 870mb free on my HD.   Thanks for your help.

    I still have 870mb free on my HD. 
    You have a major crisis right now and you need to solve it immeadiately.
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD.
    Nothing else can be done until you do. Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Burning material to optical disk will not work Creating a disk needs a large amount fo disk space - at least twice the amount you think you need.
    But really, you must make space on that HD. You are in grave danger of losing important data.
    Regards
    TD

  • Need help with different link styles on same page

    Hello,
    I'm using Dreamweaver CS4 on a PC.
    I have searched through a lot of posts over the last couple of days, I've tried the projectseven.com tutorial, google'd, etc. but still can't figure it out.....
    All I want to do is apply a different link colour to some links in the footer of my page. Elsewhere through the site I have set the colour to blue (for the link) and orange (for the hover) - for the footer links I want the link to be white and the hover colour to stay orange.
    The problem with the projectseven tutorial is that it doesn't seem to apply to CS4 and I kept getting error messages when trying to apply a new CSS rule - there's no Class|Tag|Advanced options as per the instructions ....
    I've copied the code of my page to this. The links which I want to apply a different style to are contained in the Div Tag called "Footer-Navigation-Bar" .
    Could someone please give me some instructions or point me in the right direction please??
    Many thanks,
    Vickie
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Subscribe to Family Australia - it's free!</title>
    <!-- TemplateEndEditable -->
    <link href="../family-subscribe.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    a:link {
    color: #30C;
    text-decoration: none;
    a:hover {
    color: #F30;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    -->
    </style></head>
    <body>
    <div id="container">
      <div id="banner">
        <ul id="family-subscribe-menu" class="MenuBarHorizontal">
          <li><a href="../index.html">Home</a>      </li>
          <li><a href="../subscribe.html">Subscribe</a></li>
          <li><a href="../family-advertise.html">Advertise</a>      </li>
          <li><a href="../family-articles.html">Articles</a></li>
    <li><a href="../family-sign-in.html">Issues</a></li>
          <li><a href="../family-contribute.html">Contribute</a></li>
    <li><a href="../family-contact.html">Contact</a></li>
        </ul>
    </div>
        <div id="sidebar"><a href="../family-sign-in.html"><img src="../images/launch-issue.jpg" alt="launch-issue" width="220" height="380" hspace="4" /></a>
          <div id="sidebar-image2">
            <p><img src="../images/Sleeping bag for web.jpg" width="220" height="151" alt="sleeping-bag" /></p>
            <p>Kozy Koala™ Pillow Sleeper is ideal for those  summer nights when the kids want to sleep out or when you go camping. The  all-in-one pillow camper consists of …. [MORE]</p>
          </div>
          <div id="sidebar-image3">
            <p><img src="../images/solrx for web.jpg" width="220" height="164" alt="sunscreen" /></p>
          SolRX® Sunscreens are very sweat and water  resistant – ideal for anyone who leads an active outdoor lifestyle … whether  you’re in the water or not! [MORE]</div>
      </div>
        <!-- TemplateBeginEditable name="main-content-region" -->
        <div id="main-content">main content</div>
        <!-- TemplateEndEditable -->
      <div id="footer">
    <div id="footer-navigation-bar"><a href="../family-about.html">about</a> | <a href="../family-advertise.html">advertise</a> | <a href="../family-contribute.html">contribute</a> | <a href="../family-contact.html">contact</a> | <a href="../family-unsubscribe.html">unsubscribe</a></div>
          <div id="footer-text">Family Australia | ABN 33150685385 | For all advertising enquiries please contact <a href="mailto:[email protected]">[email protected]</a><br />
    Copyright © 2010 Family Australia. All rights reserved.
    </div>
      </div>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("family-subscribe-menu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

    The links which I want to apply a different style to are contained in the Div Tag called "Footer-Navigation-Bar" .
    a:link {
    color: #30C;
    text-decoration: none;
    a:hover {
    color: #F30;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    Hello
    You can see above the CSS that applies to your links.  If you have links that you want to style in a diferent way, just write the rule Like this:
    #Footer-Navigation-Bar a:link {
    color: red;
    text-decoration: none;
    Or whatever.  There are other ways but this will do you as you already have those links you want styled differently in a div with its own ID.  The new rule should come after the other rules in your CSS I think to make sure of the cascade although thinking about it,  there's something called specificity in CSS which means that the rule that I suggest will win out anyway.  All that you are doing in my suggestion is selecting the a:link that is a descendant of an element with that particular ID.
    I hope that helps.  I'm a bit of a novice and might have got a bit jumbled with the cascade/specficity thing but hey, I reckon that will get you where you want to go....
    Martin.

Maybe you are looking for

  • How to install 32 bit program with 16 bit installer on Windows 8.1 32 bit

    Hi, I have installed a 32 bit program that uses a 16 bit installer on Windows XP machines.  The software developer of this program is out of business. Can Windows 8.1 32 bit run a 16 bit installer?  If not, any suggestions as to how I might install t

  • File name of xml form

    I have created a new xml form. For the name, I have used a label with property "displayname". When I save the form, in the KM I can view the file with the name that I assigned, but if I go with the mouse over the file I see in the button bar that the

  • Re: Keyboard issue with A10-112

    I have recieved my Tecra A10-112 laptop today and the first thing I noticed is that the keys 'L', 'R', and 'Y' makes very annoying loud click sound everytime they are pressed. Is there any quick fix to this?

  • Error on iFS download file instructions

    On http://otn.oracle.com/software/products/ifs/htdocs/linuxsoft.html: Oracle Internet File System, Release 9.0.1 for Linux (Intel) Download Internet File System for Linux Linux_iFS_901_Disk1.cpio.gz (113,053,132 bytes) Directions To extract the file

  • Hi resultset.previuos() - problem

    Hi all. Im working with jdbc.odbc standart bridge. when I try to do resultset.previous() I get an exception taht I cant fetch backwards. So I tried to change the statement propertites to somthing like - .TYPE_SCROLL_SENSITIVE now I dont get the excep