Help, advertising buttons not showing up.

Everything has been working fine, now in the last few days the advertising buttons on the right side of my index page do not show up in windows (any version) they show up in macs and on all other pages that the templet covers, just not the index page.
does anybody have any idea?
(snoho.com)

tried firefox, safari, on the macs
and windows xp on the pc's thats all I have access to.
works on the firefox and safari not on the wxp. unfortunatly my boss has xp and so does her boss.
thanks

Similar Messages

  • "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input moniter".

    "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input monitor".

    Look at all the posts in the forum from users with similar problems, it happened with the last Logic update.

  • Why isn't the edit button not showing in my ESX24 sampler?

    why isn't the edit button not showing in my ESX24 sampler?

    Is that during installation when you see the two icons.. the one on the left looking like a Garageband guitar icon, the one on the right like the Logic Pro platimum record icon?
    Yes.. that one.. with the choice to click on which option you want/are coming from...
    p.s. I'll probably aquire a Mac Mini this fall then upgrade.... I mean repurchase!
    I think I managed to grab one of the last of the 2011 refurb'ed MMS's.... at that super low price Apple were selling them for... before they bumped it up and now, they seem to have none left at all at any price
    However, just in case, I have found this site really useful at keeping track of Apple's refurb stock... and pricing
    http://www.refurb.me/us/

  • TS2972 why is the import button not showing at the button right hand corner of iTunes?

    why is the import button not showing at the bottom right hand corner of my ITunes page.  I am trying to transfer files from my home share library onto a new computers library.

    See if it isn't hidden under the View menu. iTunes- Turning on iTunes menus in Windows 8 and 7.

  • Folio Overlay Buttons not showing up on Panels after DPS Tool update

    Folio Overlay Buttons not showing up on Panels after DPS Tool update

    You're going to have to do much better as far as describing the problem. A screenshot would be a good start.
    Bob

  • [svn:osmf:] 13455: WebPlayer: Fixing full screen button not showing.

    Revision: 13455
    Revision: 13455
    Author:   [email protected]
    Date:     2010-01-12 10:59:01 -0800 (Tue, 12 Jan 2010)
    Log Message:
    WebPlayer: Fixing full screen button not showing.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/FullScreenEnterButto n.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/FullScreenLeaveButto n.as

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • Buttons not showing up in all browsers.

    I created a site in Dreamweaver which incorporates a Flash swf on the first page of the site. There is just one nav (Enter) button near the bottom of the page. When viewing on Safari and Firefox the button shows up and functions. When viewing in Opera or IE the Flash swf plays but the button does not show up. Here's a link to the site: http://www.BlueMonkeyMusic.com. Any help would be very appreciated. Thanks.
    Mac: Imac Intel Core 2 Duo, Mac OS 10.5.8

    In addition yoru code is a mess.  In that last div, below the flash, we find lots of extraneious code:
    <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('enterbutton','','assets/buttons/enter_button_f2.gif',1)"> </a>
    <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('enterbutton','','assets/buttons/enter_button.gif',1)"></a>
    <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('enterbutton','','assets/buttons/enter_button_f2.gif',1)"></a>
    <a href="home.html" target="_self" onmouseover="MM_swapImage('enterbutton01','','assets/buttons/enter_button_f2.gif',1)" onmouseout="MM_swapImgRestore()"></a>
    <a href="home.html" target="_self" onmouseover="MM_swapImage('enter','','assets/buttons/enter_over.gif',1)" onmouseout="MM_swapImgRestore()"><img src="assets/buttons/enter_up.gif" name="enter" width="100" height="35" border="0" id="enter" onclick="MM_swapImgRestore()" /></a>
    Replace all that with:
    <a href="home.html" onmouseover="MM_swapImage('enterbutton01','','assets/buttons/enter_button_f2.gif',1)" onmouseout="MM_swapImgRestore()"><img src="assets/buttons/enter_up.gif" name="enter" width="100" height="35" border="0" id="enter"  /></a>
    That said, I absolutely agree with Murray that you should lose this page entirely.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Image Buttons Not Showing Up

    Can someone help me out. My image buttons are not showing up until after I mouse over them. Any help or responses is appreciated.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.Vector;
    import java.lang.Math;
    import javax.swing.*;
    public class PokerApp extends JApplet
    implements MouseListener, MouseMotionListener, ActionListener, ItemListener
    // -------------- Global Variables ------------------------
    int width, height;
    int mx, my; // the mouse coordinates
    Color bgc = Color.lightGray;
    Color fgc = Color.black;
    Checkbox players[] = new Checkbox[10];
    CheckboxGroup cbg;
    Image img;
    public void init() {
    width = getSize().width;
    height = getSize().height;
    setBackground(bgc);
    setForeground(fgc);
    String s1;
    boolean sel;
    JButton jb;
    Container contentPane = getContentPane();
    contentPane.setLayout(null);
    ImageIcon iic[] = new ImageIcon[13];
    cbg = new CheckboxGroup();
    for (int i=0; i<9; ++i) {
    s1 = Integer.toString(i+2);
    sel = (i == 7);
    players[i] = new Checkbox(s1, cbg, sel);
    players.setBackground(bgc);
    players[i].setForeground(fgc);
    players[i].setName(s1);
    // setBounds (x=hor, y=ver, wid, hgt)
    players[i].setBounds(80 + i*30, 5, 30, 20);
    contentPane.add(players[i]);
    players[i].addItemListener(this);
    for (int i=0; i<13; ++i) {
    img = getImage(getDocumentBase(), "images/v" + (i+1) + ".jpg");
    iic[i] = new ImageIcon(img);
    jb = new JButton(iic[i]);
    jb.addActionListener(this);
    jb.setBounds(i*30, 30, 30, 30);
    contentPane.add(jb);
    img = getImage(getDocumentBase(), "images/v2.jpg");
    ImageIcon tmp = new ImageIcon(img);
    jb = new JButton(tmp);
    jb.addActionListener(this);
    jb.setBounds(200, 200, 30, 30);
    jb.setVisible(true);
    contentPane.add(jb);
    jb.validate();
    addMouseListener( this );
    addMouseMotionListener( this );
    public void start() {
    // start or resume exectuion
    public void stop() {
    // suspends execution
    public void destroy() {
    // perform shutdown activites
    public void paint( Graphics g) {
    width = getSize().width;
    height = getSize().height;
    Font font1 = new Font("Ariel", Font.PLAIN, 11);
    g.setFont(font1);
    g.setColor( Color.red );
    g.drawRect(0, 0, (width - 1), 30);
    g.drawString( "Beginning", 5, 12);
    g.drawString( "# of Players", 5, 24);
    public void mouseEntered( MouseEvent me ) { }
    public void mouseExited( MouseEvent me ) { }
    public void mousePressed( MouseEvent me ) { }
    public void mouseReleased( MouseEvent me ) { }
    public void mouseClicked( MouseEvent me ) { }
    public void mouseDragged( MouseEvent e ) { }
    public void mouseMoved( MouseEvent e ) { }
    public void actionPerformed (ActionEvent ae) { }
    public void itemStateChanged(ItemEvent ie) { }

    The part you are missing is a call to super.paint in your paint method
        public void paint( Graphics g) {
            super.paint(g);
            ...This tells the component (the JApplet) to do its default rendering before it does the custom rendering in the paint method. So the component will render your buttons before it does the rest of the paint code.
    I also added an image loading method to your applet:
    //  <applet code="PA" width="400" height="400"></applet>
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.Vector;
    import java.lang.Math;
    import javax.swing.*;
    public class PA extends JApplet implements MouseListener, MouseMotionListener,
                                               ActionListener, ItemListener
        // -------------- Global Variables ------------------------
        int width, height;
        int mx, my;                             // the mouse coordinates
        Color bgc = Color.lightGray;
        Color fgc = Color.black;
        Checkbox players[] = new Checkbox[10];
        CheckboxGroup cbg;
    //    Image img;
        Font font1;
        public void init() {
            // only need to create a font one time, not with every paint call
            font1 = new Font("Ariel", Font.PLAIN, 11);
            width = getSize().width;
            height = getSize().height;
            setBackground(bgc);
            setForeground(fgc);
            String s1;
            boolean sel;
            JButton jb;
            Container contentPane = getContentPane();
            contentPane.setLayout(null);
    //        ImageIcon iic[] = new ImageIcon[13];
            cbg = new CheckboxGroup();
            for (int i=0; i<9; ++i) {
                s1 = Integer.toString(i+2);
                sel = (i == 7);
                players[i] = new Checkbox(s1, cbg, sel);
                players.setBackground(bgc);
    players[i].setForeground(fgc);
    players[i].setName(s1);
    // setBounds (x=hor, y=ver, wid, hgt)
    players[i].setBounds(80 + i*30, 5, 30, 20);
    contentPane.add(players[i]);
    players[i].addItemListener(this);
    Image[] images = loadImages();
    for(int j = 0; j < images.length; j++)
    ImageIcon icon = new ImageIcon(images[j]);
    JButton b = new JButton(icon);
    b.addActionListener(this);
    b.setBounds(j*30, 30, 30, 30);
    contentPane.add(b);
    Image image = getImage(getDocumentBase(), "images/v2.jpg");
    ImageIcon tmp = new ImageIcon(image);
    jb = new JButton(tmp);
    jb.addActionListener(this);
    jb.setBounds(200, 200, 30, 30);
    jb.setVisible(true);
    contentPane.add(jb);
    // jb.validate();
    addMouseListener( this );
    addMouseMotionListener( this );
    private Image[] loadImages()
    MediaTracker tracker = new MediaTracker(this);
    Image[] images = new Image[13];
    for (int j = 0; j < images.length; j++) {
    images[j] = getImage(getDocumentBase(), "images/v" + (j + 1) + ".jpg");
    tracker.addImage(images[j], 0);
    try
    tracker.waitForAll();
    catch(InterruptedException ie)
    System.err.println("tracker interrupt: " + ie.getMessage());
    return images;
    public void start() {
    // start or resume exectuion
    public void stop() {
    // suspends execution
    public void destroy() {
    // perform shutdown activites
    public void paint( Graphics g) {
    super.paint(g);
    width = getSize().width;
    height = getSize().height;
    g.setFont(font1);
    g.setColor( Color.red );
    g.drawRect(0, 0, (width - 1), 30);
    g.drawString( "Beginning", 5, 12);
    g.drawString( "# of Players", 5, 24);
    public void mouseEntered( MouseEvent me ) { }
    public void mouseExited( MouseEvent me ) { }
    public void mousePressed( MouseEvent me ) { }
    public void mouseReleased( MouseEvent me ) { }
    public void mouseClicked( MouseEvent me ) { }
    public void mouseDragged( MouseEvent e ) { }
    public void mouseMoved( MouseEvent e ) { }
    public void actionPerformed (ActionEvent ae) { }
    public void itemStateChanged(ItemEvent ie) { }

  • Navigation buttons not showing up on Mail screen. Any suggestions?

    This issue started two days ago before which it was working normally.
    Basically, now when I click on the mail icon on the main menu, it opens up the mail screen but the navigation buttons on the top (allowing me to go to the parent folder, go to previous/next message etc.) do not show up any more.
    The top of the screen now is the To: field. I have tried to scroll up past it but its just a dark grey area.
    Any suggestions would be very helpful.
    Thanks

    I deleted your duplicate question... this is an open forum, not a direct line to Adobe support... you need to wait for someone to answer
    CC desktop lists applications as "Up to Date" when they are not
    -http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html
    or
    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Gui labels and buttons not showing...

    I am using Java to create a gui and so far I have everything working.
    But there is a section of code thats not working out and Ill post the whole file here (not very big) to let you guys see whats going on. The issue lies in the action listner where I state "if a text feild is empty, display the option pane, else show the following" and its not showing the labels and buttons.
    Help?
    package student.information.search;
    import javax.swing.JFrame;
    import java.awt.GridBagLayout;
    import javax.swing.WindowConstants;
    import java.awt.Rectangle;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import java.awt.ActiveEvent;
    import java.awt.Frame;
    import java.awt.GridBagConstraints;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import student.information.readonly.ReadOnlyStudentForm;
    public class StudentSearch extends Frame implements ActionListener
       JTextField textField = new JTextField();
       JFrame frame = new JFrame();
       JPanel contentPane = (JPanel) frame.getContentPane();
       GridBagLayout gridBagLayout = new GridBagLayout();
        public StudentSearch()
            gridBagLayout.columnWidths = new int[]{20, 0, 12, 137, 17};
            gridBagLayout.rowHeights = new int[]{26, 0, 6, 0, 20};
            gridBagLayout.columnWeights = new double[]{1, 0, 0, 0, 0};
            gridBagLayout.rowWeights = new double[]{0, 0, 0, 0, 1};
            contentPane.setLayout(gridBagLayout);
            JButton button = new JButton();
            button.setText("Search");
            button.addActionListener(this);
            contentPane.add(button, new GridBagConstraints(3, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
            textField.setColumns(8);
            contentPane.add(textField, new GridBagConstraints(3, 1, 1, 1, 0.0, 0.0, 768, 2, new Insets(0, 0, 0, 0), 0, 0));
            JLabel label = new JLabel();
            label.setText("Student Seach");
            contentPane.add(label, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
            frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            frame.setTitle("Student Search");
            frame.setBounds(new Rectangle(500, 0, 500, 320));
            frame.setVisible(true);
       public void actionPerformed( ActionEvent arg0)
            if (textField.getText().equals(""))
              JOptionPane.showConfirmDialog(null, "Please enter a value in the search feild", "Error", JOptionPane.OK_CANCEL_OPTION); 
            else
               //Show the text fields here and the user information. 
                 *  While there are students for this search, change the text fields to Name, Last Name and ID and have a button called
                 *  View that when clicked allows for you to view all that students information.
                JLabel firstName = new JLabel();
                firstName.setText("Label");
                contentPane.add(firstName, new GridBagConstraints(5, 5, 1, 1, 0.0, 0.0, 768, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel lastName = new JLabel();
                lastName.setText("Label");
                contentPane.add(lastName, new GridBagConstraints(3, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel studentID = new JLabel();
                studentID.setText("Label");
                contentPane.add(studentID, new GridBagConstraints(1, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JButton viewStudentInformation = new JButton();
                viewStudentInformation.setText("Search");
                viewStudentInformation.addActionListener(new ActionListener()
                        public void actionPerformed(ActionEvent e)
                               //For viewing individual student information
                                new ReadOnlyStudentForm();
                contentPane.add(viewStudentInformation, new GridBagConstraints(7, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
    }

    In general when adding or removing components for a visible GUI you need to use:
    panel.add(...);
    panel.revalidate();
    panel.repaint();

  • Lightbox buttons not showing up

    I have a page in Dreamweaver that I am using lightbox in and the next and previous buttons are not showing up, even in my previewing of the page.
    http://aesgraphics.com/portfolio.html
    Any advice will help greatly.
    Ash

    The buttons are showing up but by default they're only showing on hover.
    To show Next and Previous buttons at all times, in lightbox.css lines 14-17:
    change
    #prevLink { left: 0; float: left;}
    #nextLink { right: 0; float: right;}
    #prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
    #nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }
    to
    #prevLink { left: 0; float: left; background: url(../images/prevlabel.gif) left 15% no-repeat; }
    #nextLink { right: 0; float: right; background: url(../images/nextlabel.gif) right 15% no-repeat; }
    #prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
    #nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }

  • Flash button not showing on page

    just new to flash cs3, but have been using dream weaver cs3
    for a while now, I am trying to add a flash button to a page its
    showing up when i preview it on my own computer, I uploaded all the
    files to root folder just cant under stand whats wrong, the site is
    http://www.poxh.com in case any one
    needs to see code, any help on this would be great
    Thanks

    David,
    I don't know what that file is. Can you elaborate?
    Thanks,
    Chris
    quote:
    Originally posted by:
    Newsgroup User
    chriscatalano wrote:
    > Hopefully this is a simple problem. I've added a Flash
    Button via the Insert
    > Media -> Flash Button in DW8. Unfortunately the
    button does not show up when
    > the php page is loaded up to the server. And yes, I did
    make sure to upload
    > the button file.
    But did you upload this file?
    Scripts/AC_RunActiveContent.js
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • PDF Buttons not showing in iBooks

    I have inserted navigation buttons at the bottom of a PDF docment within Acrobat X.  The buttons show up and work just fine in Acrobat.  They also show up in the Goodreader application.  However the buttons do not show up in iBooks.  Is there a way to make them show?  I have even tried to create a image and attach a link and the buttons still do not show up.  Any help or suggestions will be greatly appreciated.

    Make sure you have followed the directions below copied from this article....
    http://support.apple.com/kb/HT4227
    Syncing and saving PDFs
    To add PDFs to your iTunes library on your computer, simply drag and drop the PDF into your iTunes Book library.
    To sync a PDF to iBooks on your device:
    Select your iPhone, iPad, or iPod touch in the Devices list on the left in iTunes 10.1 or later.
    Click the Books tab in the resulting window.
    Ensure that the Sync Books checkbox is enabled.
    If iTunes is set to only sync selected books, be sure to enable the checkbox next to the PDF you want to sync.
    Click Sync.

  • Flash buttons not showing/hiding layers in Firefox

    Before anyone says to use the search tool, I did that, even googled the problem and no suggestions have yet to work. here is the page http://www.preziosidevelopment.com/dchs/dchs.html it works flawlessly in internet explorer, but fails to work at all in firefox. All the buttons being nested inside table cells is another byproduct of having to design for firefox, if there is a better way of setting those up so they display properly in firefox feel free to let me know. I'm a designer not a coder, so please keep that in mind. Just to clarify, the only problem I am currently having is the first two buttons are not showing/hiding my layers in firefox as they do in internet explorer. Thanks for any help.
    Richard Preziosi

    I'm a designer not a coder, so please keep that in mind.
    Here's a sincere suggestion.  Do not use Flash buttons for anything.  Really.  People who don't have Flash will not see the buttons or be able to trigger anything.  Search engines will not see any links that may be embedded in those buttons nor will assistive screen devices.  As a result of these as well as other maintenance problems that would affect *you* when you try to maintain them, Adobe has removed them entirely from CS4 (and I say good riddance).  Is it possible for you to rethink this entire approach using CSS styled text or ordinary graphic buttons?

  • Customized buttons not showing hand cursor

    I have button and buttonbar components in my app. I have
    applied new skins to them using CSS. However, they do not show the
    hand cursor, so that it obvious to the user that they are, in fact,
    buttons.
    For example:
    <mx:Button click="goLink()" id="goBtn" width="18"
    height="19" styleName="customButton" mouseEnabled="true" />
    .customButton {
    color: #FFFFFF;
    text-roll-over-color: #FFFFBB;
    text-selected-color: #9999FF;
    disabled-color: #333333;
    up-skin: Embed(source="assets/btn_arrow.png");
    over-skin: Embed(source="assets/btn_arrow.png");
    down-skin: Embed(source="assets/btn_arrow.png");
    disabled-skin: Embed(source="assets/btn_arrow.png");
    What happened?

    "rtalton" <[email protected]> wrote in
    message
    news:gh103g$gd1$[email protected]..
    > Buttons, by default, do not display a hand cursor. So
    web 1.0!
    > We have to tell the button to do this. Set the
    buttonMode property to
    > TRUE.
    >
    > Read the help docs on the button properties, and take
    note of buttonMode,
    > useHandCursor and mouseEnabled. These additional
    properties can help you
    > when
    > you want another type of object to behave like a button
    with a hand
    > cursor.
    > Sounds like you may be soon headed down this road so I
    thought I'd mention
    > it.
    I think for many components you also need to set
    mouseChildren="false" and
    useHandCursor="true"

Maybe you are looking for

  • Help help

    Hi guys.. thanks for ur help yesterday... I have got few more basic doubts.. 1)when communicating with XI wats the difference and scenario of using RFC, BAPIs , IDOC and Proxy-ABAP? 2)Lets say I have to integrate my system with mySAP CRM, i came to k

  • CRM_ORDER_MAINTAIN - Add Partners

    Dear Experts, I try to create the tasks with CRM_ORDER_MAINTAIN and was successful. However the Partners are not being updated properly. I have 2 partners for the task. Employee responsible & Sold-to-party. Though I debugged the tx: CRMD_ORDER & pass

  • Will not start even in safe boot after installing latest camera update

    MacBook Pro will not start even in safe boot after installing latest camera update. I started my machine and did a software update. Only the camera update needed. So installed and when required I pressed restart. It restarted and did install. Then re

  • X79 Motherboard for drives

    First let me think the many knowledgable folks who answer questions here. I have been reading for weeks. I am buying for a new build which I will use for LR, Photoshop, and Premier Pro,  (plus ProShow Producer.) I am an enthusiast who does projects f

  • Queue Based printers stopped working after Zen 7 installed

    We have just installed Zenworks 7 suite. We have Windows XP machines with new Novell client and zfdagent. We have a policy setup and users can login and receive their applications but they can not print. All over our printers have Queues, Servers and