set the focus to the area on the page to click on link

How to set the focus of page on a particular line on the page based on a user clicks on a link in the menu. Example: the user clicks on the link in the menu 'contact' and the update page jumps to a line on the current page that has contact information. My site is versa - dol.com if you want to see exactly what I mean. Thanks in advance for any help...

.oO (rimfirelive)

> How do I set the focus of page to a particular line on the page after a user clicks a
> the menu link. Example: the user clicks on the 'contact' menu link and the focus of the page
> skip a line on the current page that has contact information. My site
> is versa - dol.com if you want to see exactly what I mean. Thank you to
> advance for any help...

You can use a named anchor, or simply another page of contact.

Micha

Tags: Dreamweaver

Similar Questions

  • Search bar on the Macbook Air doesn't work, will allow me to load the pages of Favorites and links to these pages, but not let me google from the bar or manually enter Web sites, however, it works perfectly on the guest user

    Search bar on the Macbook Air doesn't work, will allow me to load the pages of Favorites and links to these pages, but not let me google from the bar or manually enter Web sites, however, it works perfectly fine on the guest user. Have you tried restarting and it still does not work.

    The problem should be solved now.

    Otherwise:

    OS X

    iOS

    Workaround for problems with the Safari address bar

    http://osxdaily.com/2016/01/05/fix-Safari-freezing-address-bar-use/

  • Home page and a few other Web pages have a vertical bar of 2 inches on each side of the page. How to permanently set set the pages to fill my screen?

    I have a HP - i5 with Win 7 and only use Firefox 35.0.5. Recently, I met some problems with my home page loading with blue text on the left side of my 2-inch screen and put it in the shop. Some viruses are removed and 35.0 FF was installed.

    Now my home page and pages loading with a 2 "empty bookmark bar vertically to each side of the page.

    Can I use zoom in on the view or the - + zoom and zoom to 100% to 133% increase, but this change is never permanent.

    Try to fix the problem I uninstalled FF 35.0 and installed FF 35.0.5 directly on the FF site. I also uninstalled AVG virus protection program. None of this has helped.

    How can I get rid of these vertical bars of 2 inches of empty space at all TIMES?

    I have a HP laptop with a processor AMD, Win 7 and Firefox 35.0.5 and he has never had this problem.

    Firefox should remember your level of zoom on a site-by-site basis. It is not "global browser" as in IE.

    Note: If you zap the history, make sure not to clear the Site preferences.

    If you need to adjust each site by about the same amount, you can use an add-on to set a higher level of the base line of the zoom. For example: Default FullZoom Level.

    Unfortunately, there is no unique zoom level that will work perfectly for all Web sites due to the preferences of individual positioning of their webmasters. But I hope you can find a good middle ground so you need not all zoom each time.

  • Two hard drives - what to set the page file to?

    I have two hard drives, Windows is installed on C:, what should I set my page of the settings file for better performance? Hard drive space is not a problem, I have a 250 GB and a 1 TB drive, both are less than half full. I have 3.25 GB of RAM DDR2.

    I heard move the swap file on a second hard drive is beneficial, because the OS files and the page file could be consulted at the same time. Defining a very large page file or file page on both drives will hurt performance? What is a variable size compared to a matter of constant size?

    It shouldn't be noticeable performance difference if the swap file is bigger than "necessary".

    If your system can it take into account, it is considered generally to be a performance advantage to put the file on a different physical disk than the operating system is installed, provided the other player does not see many IO already.

    By using a constant size / fixed can eliminate fragmentation of the file page that can occur if it is sized dynamically.

    If you anticipate relying heavily on the swap file, maybe reconsider and add more RAM to the system, if possible, or upgrade to a 64-bit computer and the operating system that is able to handle more RAM.

  • Interactive report with display of the icon to set the page element

    Hi all

    I am currently using Apex 4.2.4, I have an interactive report using icons, each icon has a link to another page but a few I want to set a value in a page hidden in the same page element which is then used as a variable for a classic report.

    I have this work via link href in the icon as f? p ='|| FA.page |': 1 :'|| : app_session |': P10_ID_ITEM :'|| FA.link_name without error.

    My problem is that I wanted to put the value of the element without using a link href that I could handle the clicked icon to change the background color so that the user can have a Visual representation, where it was clicked, then using the value of the page item appears the classic report in another region with a partial refresh.

    Any help is appreciated, thanks.

    Can you provide a detailed explanation of the purpose of this report and the logic used in the report query? What are the rules to control which icons appear in the IR, what icons link to the second report on the page of IR, and icons to link to separate pages?

    For me, the report query seems too complicated and inefficient by returning the data it does, and if another level of data is added to the hierarchy or more data is added to the second level, it fails with:

    ORA-01427: einreihig subquery returns multiple rows

    I'm guessing that the intent is that the IR displays only the icons at the top level of the hierarchy and icons for posting a link to a different page when they have no descendants, or to display the related lines in the secondary report below the IR when they do. I created a new page with the report query modified to a route of tree and keep the upper level lines. It is much more effective than the original query and simplifies the logic necessary for the verification of end-nodes. Instead of generating a URL link (which violates the separation of concerns), the query returns of the discrete values that can be used to implement the HTML link in the Icon View link Custom property:

    with icon_tree as (
          select
              ic.id_icon
            , ic.icon_name
            , ic.link_name
            , nullif(connect_by_isleaf, 1) is_parent
            , level depth
          from
              icons ic
                connect by
                    prior ic.link_name = ic.id_parent
                start with
                    ic.id_parent is null)
    select
        id_icon
      , icon_name
      , link_name
      , apex_util.get_blob_file_src('P10_ICON_IMAGE', id_icon) img_src
      , nvl2(is_parent, '586', link_name) target
      , nvl2(is_parent, 'P586_ID_PARENT', null) parent_item
      , nvl2(is_parent, link_name, null) parent_id
      , :app_id app_id
      , :app_session app_session
      , :debug debug
    from
        icon_tree
    where
        depth = 1
    

    In the interactive report, Use Custom Icon Link is set to Yes, and the custom link is:

    
      
      
    #ICON_NAME#

    Public static ID icons and results are applied to the IR and the regions second report respectively for use as selectors in action dynamics and CSS. The protected value property for the page P586_ID_PARENT element must be set to No for the value can be defined by a dynamic action.

    Dynamic action with several real actions is needed to bind alternatives click behavior to the links on the icons that have descendants (i.e. where the data-parent-id attribute has a value):

    Event: Click

    Selection type: jQuery Selector

    jQuery Selector:.apexir_WORKSHEET_ICONS a:not([data-parent-id=""])

    Real Actions

    Seq: 10

    Action: Delete the class

    Class:selected

    Selection type: jQuery Selector

    jQuery Selector:.apexir_WORKSHEET_ICONS a

    Seq: 20

    Action: Add the class

    Class:selected

    Selection type: trigger element

    Seq: 30

    Action: Set value

    Wait for result: Yes

    Type of value: Expression of JavaScript

    JavaScript expression:$(this.triggeringElement).attr('data-parent-id')

    Selection type: Agenda

    Point: P586_ID_PARENT

    Seq: 40

    Action: Discount

    Selection type: Region

    Region: results

    Seq:50

    Action: Show

    Selection type: Region

    Region: results

    Seq: 60

    Action: Cancel event

    Finally, add a style sheet to the Inline CSS property page. Initially, this hides the secondary report and select the parent clicked icon:

    #results {
      display: none;
    }
    #icons .apexir_WORKSHEET_ICONS a {
      border: 1px solid transparent;
      border-radius: 3px;
      padding: 0.8em 0 0.5em;
    }
      #icons .apexir_WORKSHEET_ICONS a.selected {
        border-color: #6a9cda;
        background-color: #bbd1ec;
        transition: 0.6s;
      }
    

    However, after all it is the question of why you use an interactive report here if you turned off all the features of the IR? A dynamic list with a custom template box seems to be more applicable?

  • Create bookmark and set the Page Destination Script

    Greetings,

    I created a batch Script that will create children bookmarks and set the destination page.

    Bookmarks are listed in the script in the order in which they appear in ascending order.  (for example, Name1, name2, Name3, name4)

    However, once the script is run, the bookmarks are inserted in descending order. for example (Name3, name4, Name1, name2).

    Can someone advise please how do I get the script to create bookmarks in ascending order, as noted in the script?

    var bm =
    this.bookmarkRoot.createChild ("Name1", "this.pageNum = 0");
    this.bookmarkRoot.createChild ("Name2", "this.pageNum = 1");
    this.bookmarkRoot.createChild ("Name3", "this.pageNum = 2");
    this.bookmarkRoot.createChild ("Conjoint4", "this.pageNum = 3");

    var bm = this.bookmarkRoot.children [0];

    BM. Color = color.red;

    The script should also be changed to all bookmarks in red color.  The script for color bookmarks only works on the first bookmark.  Any intervention on changing the script for this would be most appreciated as well?

    Thank you.

    Use something like this:

    var bm;

    this.bookmarkRoot.createChild ("Bill Smith","this.pageNum = 0", 0);

    BM = this.bookmarkRoot.children [0];

    BM. Color = color.red;

    this.bookmarkRoot.createChild ("David Smith", "this.pageNum = 1", 1 ");

    BM = this.bookmarkRoot.children [1];

    BM. Color = color.red;

  • How to set the page template for a page in app

    I've been looking for a way to re - assign a specific page to a different page template, and I must be blind. I did it with the regions and reports, but never a whole page. The closest I can find is how to set the default page for an application model template. What I have is a printable form that they want in a specific format. I was able to code the whole thing into a region of PL/SQL, but I was hoping that I could take an existing page template and modify the model to different regions in the areas I would like to.

    Can someone help me find this? I have already created a copy of the page template I want to twist.

    If you are in the tree view, double-click the entry of title of page (top); If you are in the component view, simply click the edit button in the page area. Either way will take you to the screen of the Page change. in the display attributes section, you will see a Page Model drop-down list.

    -David

  • How to set the page display

    When you export a file in InDesign to create a pdf file, how can set you the page display in Acrobat so when someone opens the file, they will see the following page: two places continues, show the gaps between pages, see banner in two places.

    You click on the attachment and see the setting for two upward and two continuous?

    Do you know if the form is based on XML. If so, it was created on a PC using an exclusive method of creating forms for PC.

    I found this:

    1. Create your PDF
    2. Then click on the Document properties
    3. Then click on the button next to the Layout Page
    4. Choose two continuous or two up.
    5. Click OK.
    6. Then save the PDF file.

    See attachment.

  • How to set the page dynamically number in a URL?

    Hi, I would like to know how to dynamically set the number of pages in one URL. I have a report that shows me a list of options, and each option has a specific associated page number. I would like to redirect the user to a specific page, depending on the option, click it. (The values of the elements of the report, comes from a table that has two columns: opinion on, page_name)

    Thank you

    Just do the report column a link (in the attributes report > column attributes) and change the target to a url. The url should be something like

    f? p = 1: #MYPAGENUMBERCOLUMN #:Session:Request:Debug:Clearcache:itemname:itemvalue:printerfreindly

  • When you're in the long list, and you are in the Middle when click a link and open the go back to page 1 will top and the keyboard popup

    How can I go back to the same place on the page without firfox me to go upstairs.

    Open worldgsm.com and navigate to treat and offers page, then select any product the go back to deal with and the page it is going back at the top of the page and the pop-up keyboard.

    The site defines a no.-cache header when sending to the homepage of the site and we have therefore re - search the page from the server. We don't remember the position of ScrollBar in this case because the page is likely to have changed.

  • Refresh the page on click of a button

    Hello

    When I click on the button to add a new line in a table on the page of the ADF, entire page is getting updated. Can I do this without the page being refreshed?

    Thank you
    Lakshmi.

    Try this:
    1. define the partial submit property for the button create to true.
    2. set trigger partial ownership to the table for the ID of your button create.

  • How can I set the page # s in a text to update automatically?

    The book I am train has an introduction that quotes in the main text and give page numbers. How can I set these referenced page numbers update automatically when I change the number of pages in the main text? The introduction and chapters are all separate files, but they are grouped in a single Indesign book file.

    Thank you!

    You need cross-references installation

    http://www.Adobe.com/DesignCenter-archive/InDesign/articles/lrvid4024_id.html

  • Is it possible to set the Page-ÖAF as query only?

    Hi all

    We can be a form of Oracle as READ ONLY setting of function parameter ' QUERY_ONLY = YES;

    And R12, can do us a Page OFA READ only by defining parameters?

    One of the solutions is to customize the columns of all the "text entry", property set to read only be fake.
    Is there another way to set all of the OAF Page as READ ONLY?

    Thanks in advance,
    Best regards
    Zhxiang

    Yes you are right

    One of the solutions is to customize the columns of all the "text entry", property set to read only be fake.

    setReadOnly 'true '.

    No such property available on the side of the OFA.

    Thank you
    -Anil

  • How to set the page size by default for printing on a 8450.

    A few days ago, I printed a few envelopes and now when I print from some programs, the size of the printed page remained the envelope size.  I want to print from any program on paper letter without changing the settings each time.

    Thank you

    This document can help you to define the printing parameters for all type of printing. Not only for the photos as the title suggests. You shouldn't have to keep it set every time.

    The printer settings

  • How to set the page background color

    I would like to create a book with blank pages, some gray and some black backgrounds.  In photoshop, it's easy to set a background color, but I don't see how to do this in InDesign CS4.  It should be easy, but I can't find the answer anywhere!

    Thanks for your help.

    Paul

    Unless you intend to actually print the background color, rather than printing these pages in stock color, you should put a layer of sepatate behind everything and be together the nonprinting layer or turn off the visibility before the release.

    In addition, if the majority of the publication will be released on colored stock, you can change the shade [paper] to show something close, so you will not need to have a special background for these pages.

Maybe you are looking for

  • What are the last 4 digits in the Acer Aspire One model number

    For example, I have a D255-2256.  What does the 2256?  My machine is dead, and I am trying to determine if I can save her disk, memory and display and use in an another D255 netbook.

  • problem with the program and security

    I haave been Explorer 8provided by yahoo but I don't want to not touse thembecause they have a color code which is only for mypc doe only it does not color code when in the library, I want to go toexplorer 8with using yahoo or msn wheniwent tomicro s

  • XP Media Center Edition 2002 or 2005

    When I right click on my computer and click Properties, the operating system is listed under "Windows XP Media Center Edition Version 2002 Service Pack 3." However, the sticker from that machine came it's Media Center Edition 2005. I'm assuming that

  • Untrapped exception on blackberry 9300 blackBerry Smartphones

    I get a message error uncaught exception: Application Registry.waitFor (0x1c26ebcd7b130582) timeout. I can not connect mt phone to my manager office or indeed make use of my phone. any help Kamelaht

  • Create a new file option missing when right clicking

    I want to create new files by right click on my mouse. I click New and create a file icon is missing, but there are two shortcut icons. Original title: file icons.