Home page tab does not work

my home and featured artist page does not work on my site.  All other pages are accessible but those

Hello Madaline,
Please provide us with the URL to the site. Some component may also be lying on top of the menu items (overlapping them), hence making them non-clickable, but that'll need to be confirmed.
Cheers
Parikshit

Similar Messages

  • Front page opens works shortly freezes. only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally. The restart saved tabs does not work on that first page.

    front page opens works shortly freezes.
    only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally.
    The restart saved tabs does not work on that first page.

    Hi @prdstudio3 ,
    Thank you for visiting the HP Support Forums. The Serial Number needed to be removed from your Post. This is From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • Tabs won't close? Help Procedure: Set Home Page %7C does not help

    I have more than 100 open tabs that will not close.
    Help procedure Options: Home Page: %7C did not work
    Reinstalled Foxfire did not work.
    Now what?

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Why does right clinking on link and selecting open in new tab does not work?

    Why does right clinking on link and selecting open in new tab does not work?
    It opens up a blank page. The only way to make the link work is to click on the navigation bar in the new tab and press enter to reload the link.

    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    1.You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. <br />
    2. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Crystal Report for VS2010 - The Go To Page function does not work

    When running a report into Crystal(VS2010), the Go To Page function does not work.  Typing in a page number and pressing Enter does not take you to that page.  The report remains on the current page. I'm not sure if there is suppose to be a button like the one in Crystal 8.5(VS2008).

    As long as you are using the CR assemblies for VS .NET, the viewer (Win) should look like this:
    Remember, the ActiveX viewer based on the Report Designer Component (RDC, referencing craxdrt.dll) is not supported in VS 2010.
    - Ludek
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Share Your Knowledge in SCN Topic Spaces

  • When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Uninstall that extension.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • Layout Options - Page Order Does Not Work Correctly

    I have a Photosmart C7280 All-in-One printer.  The Layout Option - Page Order does not work as expected.  The User Guide (page 95) states that the default for a multiple page document is to print first page first.  The manual states that to print last page first requires one to change the Page Order to "Back to Front".  For my Excel, Word, Internet Explorer and PDF pages, I need to leave the Page Order as "Front to Back" if I want the last page to print first.  This makes no sense.  In addition, I can't get my Quicken reports to print last page first no matter what I try.  Does anyone no why the Page Order does not work as expected for Excel, Word, IE and PDF, and does not work at all for Quicken?

    Keisha,
    If you uncheck the "show" option, then the corresponding HTML for that item is not rendered on the page. Thus, when you try to inspect that item via APEX_APPLICATION.G_F02, it simply doesn't exist.
    One trick that I use when I want to have hidden items on the page, but not make them take up any space, is to concatenate them to items that will be visible.
    Using your query as an example, I would re-write it like this:
    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQThus, the second APEX report column will contain the HTML for the hidden items PARTY_ID & PARTY_TYPE_CODE, as well as the value for PARTY_TYPE_CODE. When you submit the page, you should not encounter any issues.
    Thanks,
    - Scott -
    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • The print tab does not work in mapquest

    The print tab does not work in mapquest

    You are on the right track to getting the printer installed regarding firewall but perhaps it has saved in a different port on your computer than can communicate correctly.  Search Devices and Printers on the Windows 8 PC so you can pull up the printers' folder. Do you see the Officejet 6500 in here (meaning have you installed it again)?  If you do not see it here, check your Print Server Properties and make sure the driver is not in here either, if so remove it.  Restart the Print Spooler. Make sure you uninstall it completely and shut down the PC (see video link on how to uninstall HP drivers and restart the print spooler in Windows 8 if needed).
    Remember to re-install the Full Feature Software and Drivers (for your OS and region) when the PC reboots.  Try the test print and if it does not print:
    1. Right-click on it and select Printer Properties.  
    2. Under the Ports tab make sure you see the printer's IP address here or a serial number.  Sometimes the HP network -rediscovery ports can be tricky.  
    3. When the printer is high-lighted in this window, click Add Port.  
    4. Select Standard TCP/IP and follow the rest of the prompts in the Wizard to enter in the printer's current IP address.
    5. Try to print.
    If this does not help you, you may have other computer problems.  
    Have you ever installed a printer on this PC before?  
    What is the name of the anti-virus software you use?
    Are you on a server, proxy, or other elaborate wireless setup?  
    Answer those questions for me please if the above information does not help you. I will do my best to assist. 
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Using Acrobat Pro X on windows 7.  The replace pages feature does not work.  Is this a known issue? Is there a fix?

    Using Acrobat Pro X on windows 7.  The replace pages feature does not work.  Is this a known issue? Is there a fix?

    Hi Todd,
    I haven't heard other reports of this (though there was an issue quite some time ago where deleting pages on this combination of Acrobat/OS was challenging).
    Can you please tell me what happens when you try to replace pages? Do you get an error message? Are you able to manipulate pages otherwise (delete, extract, and so on)? Is this issue unique to one file, or does it happen with all PDF files?
    I look forward to hearing back from you.
    Best,
    Sara

  • Page up and page down does not work, it works in internet explora

    page up and page down does not work @www.hkej.com/template/landing/jsp/main.jsp
    it works when using internet explora

    Go to >Tools>Options>Advanced and uncheck the "Use Autoscrolling" and "Always use the cursor keys to navigate..."
    That worked for me.

  • New tab does not work

    "Open a new tab" does not work, nor does File/New Tab

    This issue can be caused by the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    Your system details show that toolbar in the user agent as AskTbWCL2/3.12.2.16749
    See:
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Home Page setting does not survive a system re-start

    I have recently started to have trouble with my Firefox Home Page. The settings get lost when I close Windows down and re-start.
    I run Firefox 7.0.1 on Windows 7 Starter (SP1).
    What have I done?
    Set home page to iGoogle in Windows, set home page to iGoggle in Firefox
    Result: Home Page setting does not survive a re-start.
    Set home page to Blank in Windows, set Home Page to iGoogle in Firefox
    Result: Home Page setting does not survive a re-start.
    Set home page to iGoogle in Windows, set Home Page to Blank in Firefox
    Result: Home Page setting does not survive a re-start.
    Checked Firefox help, advised to edit User.j(?) file. Following the instructions failed to locate the User. file, a search of the entire C: drive failed to locate the file.
    What next?

    ''' "Set home page to iGoogle in Windows ..." '''
    Firefox has its' own setting for the Firefox homepage, it doesn't use "Internet Options" settings in Windows. <br />
    http://support.mozilla.com/en-US/kb/How+to+set+the+home+page
    As far as not having a '''user.js''' file, it isn't a standard file in Firefox. It is an optional file that the user creates to "lock" certain prefs or it might be added to Firefox via an add-on or by an "exploit" perpetrated on the user by another piece of software that they installed.

  • Home page settings do not work?

    I did the upgrade to FF 9.0.1 and it seemed to work fine. I set my home page to Google but when I open Firefox it still opens the "Thank You for Upgrading" window in the first tab and my home page in the next tab. How do I get rid of this first tab. Please don't tell me to change my home page settings because that does not work.

    See:
    * https://support.mozilla.org/en-US/questions/905058

  • When I click "remember my user name" for web pages, it does not work for web pages - I have to login after every restart (eg Hotmail)

    On websites I visit daily – newspapers, Hotmail, etc, even though I have clicked "remember me on this computer", it does not work. I have to log in every time I have restarted my computer (Mac OSX 10.5.8). Also, this may be related. I have iGoogle as my home page, but "themes", location, widgets, etc are not saved when I shut down.

    * Such details are stored in a cookie.
    * You need an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep that cookie, especially for secure websites and if you let cookies expire when Firefox closes
    * Make sure that you do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.
    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete <b>cookies.sqlite-journal</b> and <b>cookies.txt</b>, if they exist, in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case the file cookies.sqlite got corrupted.
    * http://kb.mozillazine.org/Cookies#Removing_cookies

  • 'select all' in pages 'shapes' does not work

    When drawing 2-D floor plans using Pages / Shapes......the 'Select All' function does not work !
    I am uisng Mountain Lion, v 10.8.3
    Any help will be appreciated
    Thanks
    Sheldon

    Hi Sheldon,
    Is your document based on a Page Layout Template?
    In Pages, a floor plan is more suited to a Page Layout document (which mimics a drawing app) rather than a Word Processing document.
    Here is a document that I created with Template Chooser > Page Layout > Blank.
    I added some Shapes and Text Boxes.
    'Select All' (command a) selected everything:
    I hope this helps.
    Regards,
    Ian.

Maybe you are looking for

  • Windows 7 Issues

    I am running Windows 7 64-Bit Ultimate with 16 processors (4 Quad i7 cores), 128GB of RAM on 2TB of SSD drives. and I have a range of issues.  The most prevalent is that the computer will completely freeze while typing into any application (Word, Pow

  • How to give permission to Internal client local admin rights to install applications

    Dear All, I want to give internal client rights to install application in his computer. At the same time I don't want him to login to windows server 2008 with admin rights. Could you please let me know how to do that?

  • Why can't iTunes find all the album artwork?

    Why can't iTunes find all the album artwork?

  • X200 Sporadic freezing

    We have an X200 that freezes sporadically.  So far it seems to happen when I lock it and leave it alone for 10-20 minutes.  When I come back, the display is showing the wallpaper (the thinkpad/thinkcentre timezone map) and the cursor.  The cursor arr

  • Lightroom cannot launch with this catalog... network volume or...

    I am moving from one computer to another, and I have always kept all my Lightroom files and catalogs on a separate external hard drive.  I unplugged it from my old computer, and plugged it into my new computer and it gives the following message: "Lig