CS5 Styles not Showing up in LIVE VIEW PLZ HELP

i looked at every other forum and cant find the anwser to my questions!!!! the styles show up until i click live view then they disappear!!!???? plz help
<link href="css/print.css" rel="stylesheet" type="text/css" media="print">
    <link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
those are the style links
let me know what you need to help me!!!! plz

let me know what you need to help me!!!! plz
98% of layout/display problems are caused by malformed code.
1) Ensure that your code is valid (error free).
     Code Validation Tools
     CSS - http://jigsaw.w3.org/css-validator/
     HTML - http://validator.w3.org/
2) Check that all paths to images, external style sheets and scripts are correctly pointing to your site folder and not to a file:/// on your local hard drive.
3) If that doesn't help, upload your problem page to a remote server space and provide us with a link so we can see it in our browsers.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Problm with tiledlayer object not showing on screen!! plz help

    im making a small chess game my chess board is made of Tiledlayer and my chess elements are also Tiledlayer wheneever a move is made i have to make changes to my chess elements cells. but i make changes and they appear on my tiledlayer object but dont show on screen...
    when during game when i press FIRE_KEY first time my code goes to a thread and starts a rectangle which blinks and when i press fire again the tiled_layer is updated such that my chess element is moved from selected position to desired position.... but i dont c the change on screen....
    here is the complete code of chess board class...
    * @(#)ChessCanvas.java
    * @author Aaqib
    * @version 1.00 1007/9/19
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class ChessCanvas extends GameCanvas implements Runnable{
         private  final int SCREEN_X = getWidth();
         private  final int SCREEN_Y = getHeight();
         private int boardSize = 128;
         // starting point of our chess game
         private int startX = (SCREEN_X - boardSize)/2;
         private int startY = (SCREEN_Y - boardSize)/2;
         // create bounding rectangle to know the end of chess board;
         private int endX = startX + boardSize;
         private int endY = startY + boardSize;
         private static final byte BOARD_COLUMN = 8;
         private static final byte BOARD_ROWS = 8;
         private static final byte TILE_DIMENSION = 16;
         // current X, Y position of cursor
         private byte currentCursorRow;
         private byte currentCursorColumn;
         // the row column which r selected
         private byte selectedRow;
         private byte selectedColumn;
         // the current pixel lcoations
         private int currentPixelX;
         private int currentPixelY;     
         // check if selected. convert curser to red
         private boolean selected = false;
         // background color
         private int white = 0xFCFCFC;
         // the chess board tiled Layer
         private TiledLayer tiledLayer;
         // the chess elements
         private TiledLayer chessElements;
         // layer Manager to add tiles and sprites;
         private LayerManager layerManager;
         // the cursor which selects and moves the objects
         private Sprite cursor;
         // matrix representing the chess board;
         private final byte chkBoard[][] ={
                                       {2,1,2,1,2,1,2,1},
                                       {1,2,1,2,1,2,1,2},
                                       {2,1,2,1,2,1,2,1},
                                       {1,2,1,2,1,2,1,2},
                                       {2,1,2,1,2,1,2,1},
                                       {1,2,1,2,1,2,1,2},
                                       {2,1,2,1,2,1,2,1},
                                       {1,2,1,2,1,2,1,2},
         private final byte elements[][] = {
                                              {6,2,5,4,3,5,2,6},
                                              {1,1,1,1,1,1,1,1},
                                              {0,0,0,0,0,0,0,0},
                                              {0,0,0,0,0,0,0,0},     
                                              {0,0,0,0,0,0,0,0},
                                              {0,0,0,0,0,0,0,0},
                                              {7,7,7,7,7,7,7,7},
                                              {12,8,11,10,9,11,8,12}          
         private Graphics g;
         // main constructor
        public ChessCanvas() {
             super(true);
                  setFullScreenMode(true);
                  init();
         * Initialize all GUI components
        public void init(){
          try{
                 Image spriteImg = Image.createImage("/cursor.png");
                 cursor = new Sprite(spriteImg,15,15);
                 cursor.setRefPixelPosition(startX - TILE_DIMENSION, startY - TILE_DIMENSION);
                Image img = Image.createImage("/board.png");
                Image elmt = Image.createImage("/chess.png");
                tiledLayer = new TiledLayer(BOARD_COLUMN, BOARD_ROWS, img, TILE_DIMENSION, TILE_DIMENSION);
                chessElements = new TiledLayer(BOARD_COLUMN, BOARD_ROWS, elmt,16,16);
                layerManager = new LayerManager();           
                currentCursorRow = 5;
                currentCursorColumn = 6;
                for (int y = 0; y < BOARD_COLUMN; y++){
                     for (int x = 0; x < BOARD_ROWS; x++){
                          int grid = chkBoard[y][x];
                          int data = elements[y][x];
                          tiledLayer.setCell(x,y, grid);
                          chessElements.setCell(x,y,data);
                g = getGraphics();
                // sets the position of chess board in center
                tiledLayer.move(startX, startY);
                chessElements.move(startX,startY);
                layerManager.append(cursor);
                layerManager.append(chessElements);
                layerManager.append(tiledLayer);
                moveCursor(currentCursorColumn * TILE_DIMENSION, currentCursorRow * TILE_DIMENSION );
          catch(Exception exception ){
                 System.out.println("exception in init method  --  "+exception.toString() );
        public void start(){
             Thread thread = new Thread(this);
             thread.start();         
        public void run(){
             while (true){
                  // check game state;
                  //checkState();
                  // check the userinput
                  checkUserInput();              
                  updateScreen(g);
                  flushGraphics();
                  try{
                       Thread.currentThread().sleep(300);
                  }catch(Exception exception){}
        private void checkUserInput(){
             int keyState = getKeyStates();
             switch(keyState){
                  case FIRE_PRESSED:
                       if (selected){
                            selected = false;
                            // make the move
                            logging ("selected >>  row  "+selectedRow+"  column   >>  "+selectedColumn +"\n");
                            logging ("current >>  row   "+currentCursorRow+"  column   >>  "+currentCursorColumn +"\n");
                             int selectedItem = chessElements.getCell(selectedRow,selectedColumn);
                             logging("selected item  >>  "+selectedItem+"\n");
                             chessElements.setCell(currentCursorRow,currentCursorColumn,selectedItem);
                             chessElements.setCell(selectedRow,selectedColumn,0);
                             chessElements.setCell(6,6,7);
                             logging ("selected >>  row  "+selectedRow+"  column   >>  "+selectedColumn +"\n");
                            moveCursor(0,0);
                       }else{
                            selected = true;
                            selectedRow = currentCursorRow;
                            selectedColumn = currentCursorColumn;
                            chessElements.setCell(6,6,7);
                       animateSelectedItem();
                  break;
                  case UP_PRESSED:
                       if (!cursor.isVisible())
                            cursor.setVisible(true);          
                       if (currentCursorRow == 1){
                            if (currentCursorColumn == 8){
                                 currentCursorColumn =1;
                                 currentCursorRow = 8;
                                 currentPixelX = -112;
                                 currentPixelY = 112;
                                 //moveCursor(-112,112);
                            }else{
                                 currentCursorColumn++;
                                 currentCursorRow = 8;
                                 currentPixelX = TILE_DIMENSION;
                                 currentPixelY = 112;
                                 //moveCursor(TILE_DIMENSION,112);
                       else{
                            currentCursorRow--;
                            currentPixelX = 0;
                            currentPixelY = -TILE_DIMENSION;
                            //moveCursor(0,-TILE_DIMENSION);
                       moveCursor(currentPixelX,currentPixelY);
                  break;
                  case DOWN_PRESSED:
                       if (!cursor.isVisible())
                            cursor.setVisible(true);
                       if (currentCursorRow == 8){
                            if (currentCursorColumn == 8){
                                 currentCursorColumn =1;
                                 currentCursorRow = 1;
                                 currentPixelX = -112;
                                 currentPixelY = -112;
                                 //moveCursor(-112,-112);
                            }else{
                                 currentCursorColumn++;
                                 currentCursorRow = 1;
                                 currentPixelX = TILE_DIMENSION;
                                 currentPixelY = -112;
                                 //moveCursor(TILE_DIMENSION,-112);
                       else{
                            currentCursorRow++;
                            currentPixelX = 0;
                            currentPixelY = TILE_DIMENSION;
                            //moveCursor(0,TILE_DIMENSION);
                       moveCursor(currentPixelX, currentPixelY);
                  break;
                  case LEFT_PRESSED:
                       if (!cursor.isVisible())
                           cursor.setVisible(true);
                       if (currentCursorColumn == 1){
                            if (currentCursorRow == 1){
                                 currentCursorColumn =8;
                                 currentCursorRow = 8;
                                 currentPixelX = 112;
                                 currentPixelY = 112;
                                 //moveCursor(112,112);
                            }else{
                                 currentCursorColumn = 8;
                                 currentCursorRow--;
                                 currentPixelX = 112;
                                 currentPixelY = -TILE_DIMENSION;                       
                                 //moveCursor(112,-TILE_DIMENSION);
                       else{
                            currentCursorColumn--;
                            currentPixelX = -TILE_DIMENSION;
                            currentPixelY = 0;
                            //moveCursor(-TILE_DIMENSION,0);
                            moveCursor(currentPixelX, currentPixelY);
                  break;
                  case RIGHT_PRESSED:
                       if (!cursor.isVisible())
                           cursor.setVisible(true);
                       if (currentCursorColumn == 8){
                            if (currentCursorRow == 8){
                                 currentCursorColumn =1;
                                 currentCursorRow = 1;
                                 currentPixelX = -112;
                                 currentPixelY = -112;
                                 //moveCursor(-112,-112);
                            }else{
                                 currentCursorColumn = 1;
                                 currentCursorRow++;
                                 currentPixelX = -112;
                                 currentPixelY = TILE_DIMENSION;
                                 //moveCursor(-112,TILE_DIMENSION);
                       else{
                            currentCursorColumn++;
                            currentPixelX = TILE_DIMENSION;
                            currentPixelY = 0;
                            //moveCursor(TILE_DIMENSION,0);
                       moveCursor(currentPixelX,currentPixelY);
                  break;
        public void updateScreen(Graphics g){
             g = getGraphics();
             // set the background color
             g.setColor(white);
             g.fillRect(0, 0, getWidth(), getHeight());
              // draw the board         
             tiledLayer.paint(g);
             // paint the cursor
             cursor.paint(g);
             // chess elements
             chessElements.paint(g);
        private void moveCursor(int x , int y){
             //logging(" cursor  >>   "+cursor.getFrame());
             // red cursor selected
             if (selected){
                  //logging("red");
                  cursor.setFrame(1);
             }else{
                  // normal green cursor moving
                  //logging("green");
                  cursor.setFrame(0);
             cursor.move(x,y);
         * Animate the selected Item. runs a saperate thread;
        private void animateSelectedItem(){
             cursor.setVisible(false);
             new Thread(new Runnable() {
                  Graphics g = getGraphics();
                  public void run(){
                           while(selected){
                            try{
                                 Thread.currentThread().sleep(600);
                            }catch(Exception exception){
                                 System.out.println("exception in animating sprite");
                             g.setColor(0xF71302);
                             g.drawRect((startX+ (selectedColumn * TILE_DIMENSION))-16,
                                            (startY+ (selectedRow * TILE_DIMENSION))-16, 14, 14 );
                            flushGraphics();
             }).start();
        private void logging (String str){
             System.out.print(str);
    }plz help me....
    thanks :(

    {color:#000080}I don't know whether that's the only thing wrong here, but I see 3 calls to getGraphics(). The documentation for javax.microedition.lcdui.game.GameCanvas.getGraphics() says:{color}
    A new Graphics object is created and returned each time this method is called; therefore, the needed Graphics object(s) should be obtained before the game starts then re-used while the game is running.
    {color:#000080}-- Your call to getGraphics() in updateScreen(Graphics g) will return the reference to the local variable represented by the parameter g, which will be out of scope as soon as the method returns.
    -- Your call to getGraphics() in animateSelectedItem() assigns the reference to a newly declared local variable, which too will be out of scope when the method returns. (But this method includes flushGraphics() so just possibly this g is flushed to the display.)
    db{color}

  • Album is not showing watsapp images...plz help

    Hi...i have Z3 n my watsapp pictures are saved but I cant see them in album..please help urgent...

    1. open the album app
    2. swipe left to right
    3. folders
    4. whatsapp

  • Text in landscape orientation is not showing up in portrait view

    When I have added additional pages while working in landscape mode and added text to these pages, the text is not showing in portrait view. The only text that shows is the one that comes if I have used the default text box in the 2 column mode. Even using the default textbook I find is not looking good because extra spaces I am putting in for landscape mode aren't needed in the other view. Finally, the headers are also not showing up in portrait view. What to do?
    Other difficulties:
    1) hyperlinking text is defaulting to the hyperlink character style which is not letting me change the colour from red to blue.
    2) jpg images are not being recognized as figures. I would like to be able to bookmark the images, but it is not allowing me. I would also like to have them show in portrait mode, but they are not.
    Thank you!!!

    Sorry if I'm being daft, but what do you mean by linking the text fields? I have one text box in landscape view. When I go to portrait, it no longer exists. If I insert a text box in portrait view, it does not appear in landscape.
    I'm not sure if this is the same problem, but I'm hoping you might have some ideas.
    Thanks.

  • Twitter Bootstrap not displaying correctly in Live View in DW CS4

    I am having a problem with Twitter Bootstrap templates not displaying correctly in Live View in Dreamweaver CS4. They look more correct with Live View turned off than on. When I turn Live View on, it looks as if it's not finding a style sheet or something, but they are all href'ed properly. Is there a way to fix this?

    Hi kooshetty,
    Did you preview the site in various browsers and check the display? You are using an older version of DW, and I am not sure if the Webkit engine supports bootstrap code.
    Thanks,
    Preran

  • Old All-Day events not showing in Calendar List View

    Reviewing events in my Calendar on the iPhone and have noticed that All Day Events that are older than one year do not show in the "List" view
    For example, I have all my holidays in a calendar called "Vacation". Month and Day view list holidays from earlier than today (09 Sept 2008) properly, however list view shows nothing. Timed events (e.g. day trips) in the same calendar show.
    Similarly no Birthdays appear in the past. I can see a case for Birthdays being omitted in the past, but not other events (e.g. wanting to know exactly when you went to that all day wedding last summer)

    I have this same exact problem. For me, past events that have a specific time associated with them show up in List view; however, past events that are all day events only show in List view once in a blue moon only. Apple support has been absolutely clueless about this issue. They just tell me it's weird and they have no explanation. It's unbelievably annoying though.

  • Why some times jdeveloper does not show a coreect design view ?

    Hi
    thank you for reading my post
    why jdeveloper does not show a correct design view of jsf pages sometimes?
    It does not shows labels and ... , just show tag names like : form , ... ?
    here is a picture for this :
    1-incorrect page:
    http://www.flickr.com/photos/59086726@N00/217556594/
    2-correct page :
    http://www.flickr.com/photos/59086726@N00/217556595/
    I just closed and open the IDE and page designer shows incorrect pages
    thanks

    Also try this...go to the project properties for the View project. Look at the JSF Libraries and remove the two JSF libraries and then re-add them....this sometimes helps.
    Regards
    Grant Ronald

  • Calendar events not showing up in list view

    Hi,
    some of my events are not showing up in list view. They are synced to the iphone. I can see them in day and month view.
    It seems to me that events created with ical and synced through MM are not showing up, but I'm not sure.
    Any idea?
    Wilfried.

    Yes I have also events from the holidays and the events I created.(Invitations and others) but where is this option for the NC? In general>notifications I can't find anything about showing events from different calendars there. And how is this subscription made because I had the holidays as soon as I input my account on this device. Maybe I included the holiday calendar but I don't remember. How is that made? And where to find these options?

  • Calendar items not showing ONLY in list view on iPhone

    Weird: My Calendar items are not showing in the list view only, on iPhone.
    They show when I search, they show in month, they show in Day views--just NOT in list view.
    Ideas?

    I just had the same problem (calendar information--for eight different calendars--OK on laptop and on Mobile me; on the iPhone only 3 of my calendars were displaying in "List" view, but all eight were appearing in "Day" view); first time I've encountered this problem (and immediately after installing the 11-February-2010 iPhone software update, so I'm suspicious that this might have been the cause).
    Solution described in posting immediately above seems to have worked. I.e.,:
    1. shut OFF MobileMe syncing for calendars on the iPhone (from Settings menu);
    2. wait for calendar entries to be removed;
    3. shut off iPhone, and wait 2 minutes;
    4. restart iPhone;
    5. turn ON MobileMe syncing for calendars on the iPhone (again, from Settings menu).
    All eight calendars now appear in List view (and still appear in Day view).

  • New tables & indexes created do not show up in dba_segments view

    Dear all,
    I have created 3 tables and some indexes, but these objects do not show up in dba_segments view. Is this a normal behaviour? Previously, with dictionary managed tablespace, I can specify the minimum extent to create, when the table/index is created. But I'm not sure how the locally managed tablespace work. Please do advice. Thank you very much in advance.
    I'm using Oracle 11g R2 (11.2.0.1.0) for Microsoft Windows (x64), running on Windows 7.
    For the purpose of reproducing this issue, I have created the tablespaces as follow:
    CREATE TABLESPACE CUST_DATA
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_DATA01.DBF' SIZE 512K
    AUTOEXTEND ON NEXT 256K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 256K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE CUST_INDX
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_INDX.DBF' SIZE 256K
    AUTOEXTEND ON NEXT 128K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLE CUSTOMER_MASTER (CUST_ID VARCHAR2 (10),
    CUST_NAME VARCHAR2 (30),
    EMAIL VARCHAR2 (30),
    DOB DATE,
    ADD_TYPE CHAR (2) CONSTRAINT CK_ADD_TYPE CHECK (ADD_TYPE IN ('B1','B2','H1','H2')),
    CRE_USER VARCHAR2 (5) DEFAULT USER,
    CRE_TIME TIMESTAMP (3) DEFAULT SYSTIMESTAMP,
    MOD_USER VARCHAR2 (5),
    MOD_TIME TIMESTAMP (3),
    CONSTRAINT PK_CUSTOMER_MASTER PRIMARY KEY (CUST_ID) USING INDEX TABLESPACE CUST_INDX)
    TABLESPACE CUST_DATA;
    SQL> SELECT TABLE_NAME, TABLESPACE_NAME
    2 FROM USER_TABLES
    3 WHERE TABLE_NAME LIKE 'CUST%';
    TABLE_NAME TABLESPACE_NAME
    CUSTOMER_MASTER CUST_DATA
    SQL> SELECT INDEX_NAME, TABLESPACE_NAME
    2 FROM USER_INDEXES
    3 WHERE TABLE_NAME LIKE '%CUST%';
    INDEX_NAME TABLESPACE_NAME
    PK_CUSTOMER_MASTER CUST_INDX
    SQL> SELECT SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME, BYTES
    2 FROM USER_SEGMENTS;
    no rows selected

    Prior to 11g, when you created a table or whatever, you automatically allocated one extent.
    This is now no longer true and depends on a parameter I don't remember.
    dba_segments is a summary of dba_extents.
    Obviously, if there is no extent allocated, the table (view is defined with inner join) will not show up.
    You could qualify this is as a bug and submit a SR to Oracle. But then the performance impact may be huge.
    Sybrand Bakker
    Senior Oracle DBA

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • Narrative is not showing up in Layout View

    Narrative is not showing up in layout view when I'm creating a custom report. In Step 2, Creating Layout. I am hovering over add view, then down to advanced. Narrative is not showing up. How do I get this to work??? Static text and Legend is not showing either.
    Thank you for your help!!

    Hello,
    You need to have the privilege Analytics Scripting in step 4 for the narrative report to work. Only then would you HTML and javascript you apply on the Narrative report would show up.
    Please update if this works or not.
    Regards,
    Paul

  • My photoshop CS5 does not show a tool sidebar as my CS3 does.  How do I bring this up?

    My photoshop CS5 does not show a tool sidebar as my CS3 does.  How do I bring this up?

    Window>Workspace>Essentials (Default)
    "Window" is a menu title in the Menu Bar.

  • Upgraded to CS5 running Yosemite (mac os 10.10), upgraded scanner Epson Perfection Photo 700, click on "import" and CS5 is not showing scanner dlick on "import" in photoshop

    upgraded to CS5 running Yosemite (mac os 10.10), upgraded scanner Epson Perfection Photo 700 software--when i click on "import" CS5 is not showing scanner--what do i have to do to get it to recognize scanner?

    Hi Gene,
    Persistence pays off: so initially, CS5 was not recognizing my Epson Perfection Photo V700. I reloaded the Epson software twice and using the mac menu for printers and scanners tried to get it to operate. no dice.  Finally, on the third try, I went to Finder to look under applications software, found the epson software and clicked on that, and finally got the Epson scan window to open. So now, even tho i can't open it from inside CS5, i can still get the image into CS5 easily by clicking on "open" and going to finder. (Still good to know about Vuescan tho.)
    Aloha,
    Temple

  • Dreamweaver cs5 does not show part of the properties tools...

    Hello Everyone,
    Dreamweaver cs5 does not show part of the properties tools on the bottom of the page, i.e. on HTML : TITLE and TARGET and on CSS: BOLD, ITALIC and PARAGRAPHS sections.
    I have DW CS5 and WIN 7 Home Premium 64 bit, I have uninstalled and reinstalled several times but no luck, I tried to clean through regedit still no show.
    I have onother computer installed same DW CS5 works OK.
    Is there any folders keeping the old DW CS5 files or how can I uninstall all the traces complete DW CS5.
    Thank you in advance
    Denis

    Make sure your settings are set to 96 dpi, for the font.
    desktop right click
    personalize
    change to default 96 dpi
    you will be good to go

Maybe you are looking for

  • HT4906 I just upgraded iphoto, but it is version 7.1.5 (and called iPhoto 8). Do I have to pay for iPhoto 9 in order to use photo stream?

    I just upgraded iphoto, but it is version 7.1.5 (and called iPhoto 8). Do I have to pay for iPhoto 9 in order to use photo stream?

  • Blurry text while using ACP

    We are trying to use Adobe Connect Professional to teach others at a different site and they can't read text on some of the screens.  We are using a live site via the web so we can't change font size like you can in a slide or document. Any ideas? Th

  • JTable questions

    Whats the easiest, fastest way to save the contents of a JTable to the hard drive, and then be able to load it back up again?? Also, whats the fastest way to add and remove rows from a JTable. I want the user to be able to push (+) and (-) buttons to

  • Color depth of the mouse cursor

    Upgraded to srss 4.2 yesterday and discovered the addition of Xrender support. After enabling it the mouse cursor switches to an animated one. This looks really horrendous, since the mousecursor is displayed in black and white (1bit color depth). Doe

  • Sales Opportunities and Activities Import

    We need to import the attached into SAP as Sales Opportunities and related Activities. I believe the mappings are roughly as follows: Opportunities Source     Destination SalesCode     OOPR.CardCode Createdate     OOPR.StartDate Description     OOPR.