Help with links - please!

I just started learning web design/Dreamweaver and I'm working with a site that already exists on a remote server. I set up a local folder for the site and followed the manual to the preferences. I tried to edit a link that was already up on the site (which was linked to the wrong page by the developer of the original site) and failed. The link should point to the page is already created and at the remote site. I have highlighted the text, typed the URL in the preferences box, saved the file and tested by pressing F12. The link isn't quite right (half of the text was dark blue/half color it should be), but it worked... so I proceeded to put the files online. When I went on the site the link does not work... what could be the problem?
Help, please!

The links have html extensions but it seems that the file names are .htm

Tags: Dreamweaver

Similar Questions

  • I was told that I have to disable my account from my PC to add to another computer... I've done it before and I lost many of my images that were on LR.  No matter WHAT HELP with this please

    I'm trying to load another computer with CC, I was told that I have to disable my PC mine.  I did once before and lost a lot of my images from LR, suggestions on this please.

    I do the LR back ups system too.

    Thank you very much

    PAM

    Hi goaliemom

    There is no way to disable CC products. When you enable a CC product on another computer, simply connect to Creative Cloud.CC will ask you if you it will activate on more than 2 computers.

    I've done it before and I lost many of my images that were on LR.  No matter WHAT HELP with this please

    On the computer on which you will see that your images are not displayed?

    Catalog check the most recently used file > open recent in Lightroom

    Try opening a recent backup made on your newly added computer

    ~ Assani

  • Hello good I would like to cancel the annual plan of adobe audition, because I had problems with the software and the Bank, if I can help with this please.

    Hello good I would like to cancel the annual plan of adobe audition,

    As I have had problems with the software and the Bank, if I can help with that please.

    Please contact customer support for cancellation & refund of the next purchase. Contact the customer service

    Creative single-app cloud membership for Adobe Audition (one year) Subscription Office March 11, 2015

    In the case of any questions, please let us know, I can certainly go for you.

    Concerning

    Baudier

  • Help with link behavior

    I am under some misunderstanding or lack of understanding about the stationary and visited link style effects. In the footer of the file which is below, I have an adverb "Legally" and an openrange-logo image. I want to both be links.

    http://www.openrangeimaging.com/test/gravity-test/index-Test01.html

    I have almost the legal link works correctly. It is the appropriate color and has no text decoration initially. Place the cursor over the link and it changes color. Click on the legal link and it opens the referenced page. The problem is that if you click on the back button of the browser the link then appears with a very small dotted border.

    Openrange-logo link does not appear correctly. It connects to the external site ok. But it seems initially with the blue border which becomes red on the bottom and the violet after the visit. I want it to appear without any border or any other effect in all States. I maybe it changes color to the overview, but for now I want to get rid of the borders.

    I think that I have the html markup incoorect but I can't figure out how. I tried a number of things without success.

    Any help with this and other comments on the code and markup of this will be very much appreciated.

    TIA

    It should be-

    an img {outline: none; border: none ;}}

    Nancy comes to typo...

  • Help with menu please

    Hello, I have a horizontal menu on a site I am building.  I have several pages and they have child pages.  When I ride the child page tabs appear, but if there is more than one page of the child, they are next to each other, horizontal also.

    How keep the horizontal main navigation bar and have child pages to go vertically?  I hope that makes sense to someone lol.

    Thank you!

    Kat

    Hi Kat,

    By default, the child pages appear vertically even if you have more than one page of the child.

    Can you please help us with a screenshot?

    Kind regards

    Akshay

  • Help with link to the home page

    Hello

    Can someone help me?

    I created a website and now I create a second folder / file. How can I link this second issue to the homepage in the first folder?

    Sorry for my English

    It is not quite clear whether my assumption that you are working with two. MUSE files is correct.

    However, if it is correct and that you develop both. MUSE of files and their download to host online location, so when even if you change the file names, the last download index.html file will overwrite the index.HTML of the first download.

    Something else to try is:

    • create a subdomain for the second site, it does not cost any extra.
    • Then download the second .muse to the subdomain site.

    If possible provide us with screenshots of what you're trying to reach, sometimes helps us to better understand what the problem is. You can insert them into the answers by clicking on the small camera above the text box icon.

    CARI

  • need help with query-please help

    Hi all
    I want to convert the query to a view online below. I write examples of data that I used
    create table pde(empno number(10),act_hour varchar(10 byte));
     
    Table created
     
    insert into pde values(211,'12:20');
    insert into pde values(211,'06:00');
    insert into pde values(213,'07:00');
    insert into pde values(213,'07:20');
     
    WITH  got_total_hours     AS
    (
         SELECT SUM (   TO_NUMBER (SUBSTR (act_hour, 1, 2))
                    + ( TO_NUMBER (SUBSTR (act_hour, 4, 2))
                      / 60
                      )
                    ) AS total_hours  
         from      pde
     
    )
    SELECT        TO_CHAR (FLOOR (total_hours))
           || ':'
           || TO_CHAR ( MOD (total_hours, 1) * 60
                  , 'fm00'
                   )     AS hh_mm,empno,act_hour
    FROM     got_total_hours ,pde
     
    this is the output i am getting  
     
    HH_MM  EMPNO  ACT_HOUR
    32:40     211     12:20
    32:40     211     06:00
    32:40     213     07:00
    32:40     213     07:20
    
    i tried changing the above query to an inline view given below
    SELECT        TO_CHAR (FLOOR (total_hours))
           || ':'
           || TO_CHAR ( MOD (total_hours, 1) * 60
                  , 'fm00'
                   )     AS hh_mm,act_hour from(SELECT SUM (   TO_NUMBER (SUBSTR (act_hour, 1, 2))
                    + ( TO_NUMBER (SUBSTR (act_hour, 4, 2))
                      / 60
                      )
                    ) AS total_hours  
         from      pde)
    
    ORA-00904:''ACT_HOUR":invalid identifier
    Please help me
    thanking in advance
    Kind regards
    oracleuser

    Published by: makdutakdu on January 5, 2010 11:41

    Just push "with the clause" within the main request and give an alias of the table for him... something like

     SELECT TO_CHAR (FLOOR (total_hours))
      || ':'
      || TO_CHAR ( MOD (total_hours, 1) * 60 , 'fm00' ) AS hh_mm,
      empno                                                     ,
      act_hour
       FROM
      (SELECT SUM ( TO_NUMBER (SUBSTR (act_hour, 1, 2)) + ( TO_NUMBER (SUBSTR (act_hour, 4, 2)) / 60 ) ) AS total_hours
         FROM pde
      ) got_total_hours ,
      pde
    

    Ravi Kumar

  • need help with link in #sidebar1 opened in #mainContent

    I am new to dreamweaver and the web design community so it's probably will sound like a simple enough question, but here I'm designing a page and there a containers of sidebar and maincontent footer header I want my links in #sidebar1 to open in #mainContent how can I do? I had it works fine with frames only games set the goal but framesets unprofessional aspect because they don't necessarily align smoothly so I made this new page you can look at www.czechslavnosti.com and tell me what you think that will help me. Thank you the link to the site

    In the case where someone was never interested in solving a similar problem that I ended up doing was using iframes to make this worked GREAT! see this site for more information about iframe http://www.samisite.com/test-csb2nf/id43.htm
    Good luck!

  • Help with crashing please

    Hello guys,.

    Can you please help me and tell me why my iMac freezes?  Here is the report of panic:

    Anonymous UUID: AE5E012D-2EB1-D916-D689-4D425901F6DC

    Fri Jan 8 18:12:23 2016

    Panic report *.

    panic (cpu 1 0xffffff80128b47df appellant): "(default pager): [KERNEL]: default memory manager"@/Library/Caches/com.apple.xbs/Sources/xnu/xnu-3247.1.106/osfmk/default _pager / default_pager.c:421 "

    Backtrace (CPU 1), frame: return address

    0xffffff80aca63db0: 0xffffff80128e5357

    0xffffff80aca63e30: 0xffffff80128b47df

    0xffffff80aca63e60: 0xffffff80128b462b

    0xffffff80aca63e80: 0xffffff8012945aa1

    0xffffff80aca63ef0: 0xffffff8012e26234

    0xffffff80aca63f10: 0xffffff80129c135a

    0xffffff80aca63fb0: 0xffffff80129f48b6

    The process corresponding to the current thread BSD name: logind

    Boot args: vm_compressor = 1

    Mac OS version:

    15A 284

    Kernel version:

    Darwin Kernel Version 15.0.0: Wed Sep 26 16:57:32 PDT 2015; root:XNU-3247.1.106~1/RELEASE_X86_64

    Kernel UUID: 37BC582F-8BF4-3F65-AFBB-ECF792060C68

    Slide kernel: 0 x 0000000012600000

    Text of core base: 0xffffff8012800000

    Text __HIB base: 0xffffff8012700000

    Name of system model: iMac11, 3 (Mac-F2238BAE)

    Availability of the system in nanoseconds: 3440709270920

    last load kext to 1987699976309: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7f959a9000 size 32768)

    Finally unloaded kext to 2047745897309: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7f959a9000 size 32768)

    kexts responsible:

    com.apple.driver.AppleBluetoothMultitouch 90.3

    com.apple.driver.AudioAUUC 1.70

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.AGPM 110.20.19

    com Apple.filesystems.autofs 3.0

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleMikeyHIDDriver 124

    com.apple.driver.AppleMikeyDriver 272.50

    com.apple.driver.AppleHDA 272.50

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com Apple.Driver.pmtelemetry 1

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.kext.AMDFramebuffer 1.3.6

    com.apple.iokit.IOBluetoothSerialManager 4.4.0f4

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.AMDRadeonX3000 1.3.6

    com.apple.driver.AppleHV 1

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.0f4

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.kext.AMD5000Controller 1.3.6

    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0

    com.apple.driver.AppleLPC 3.1

    com.apple.driver.AppleBacklight 170.8.1

    com.apple.driver.AppleMCCSControl 1.2.13

    com.apple.driver.AppleUSBCardReader 3.7.1

    com.apple.driver.AppleIRController 327,5

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 37

    com.apple.iokit.SCSITaskUserClient 3.7.7

    com.apple.iokit.IOAHCIBlockStorage 2.8.0

    com.apple.driver.AppleFWOHCI 5.5.2

    com.apple.iokit.AppleBCM5701Ethernet 10.1.11

    com.apple.driver.AirPort.Atheros40 700.74.5

    3.1.5 com.apple.driver.AppleAHCIPort

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.driver.AppleBluetoothHIDKeyboard 181

    com.apple.driver.AppleHIDKeyboard 181

    com.apple.driver.IOBluetoothHIDDriver 4.4.0f4

    com.apple.driver.AppleMultitouchDriver 304,9

    com.apple.driver.AppleHIDTransport 5

    com Apple.kext.Triggers 1.0

    com.apple.driver.DspFuncLib 272.50

    com.apple.kext.OSvKernDSPLib 525

    com.apple.iokit.IOSurface 108.0.1

    com.apple.iokit.IOSerialFamily 11

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOAcceleratorFamily2 203.7.1

    com.apple.driver.AppleSMBusPCI 1.0.14d1

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.0f4

    com.apple.iokit.IOBluetoothFamily 4.4.0f4

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.kext.AMDSupport 1.3.6

    com.apple.AppleGraphicsDeviceControl 3.11.31

    com.apple.iokit.IOFireWireIP 2.2.6

    com.apple.driver.AppleHDAController 272.50

    com.apple.iokit.IOHDAFamily 272.50

    com.apple.iokit.IOAudioFamily 203.8

    com.apple.vecLib.kext 1.2.0

    com.apple.driver.IOPlatformPluginLegacy 1.0.0

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.driver.AppleBacklightExpert 1.1.0

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.driver.AppleSMC 3.1.9

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.7

    com.apple.iokit.IOUSBMassStorageDriver 1.0.0

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.7

    com.apple.iokit.IOBDStorageFamily 1.8

    com.apple.iokit.IODVDStorageFamily 1.8

    com.apple.iokit.IOCDStorageFamily 1.8

    com.apple.iokit.IOAHCISerialATAPI 2.6.2

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    4.5.8 com.apple.iokit.IOFireWireFamily

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.iokit.IOEthernetAVBController 1.0.3b3

    com.apple.driver.mDNSOffloadUserClient 1.0.1b8

    com.apple.iokit.IO80211Family 1100.23

    com.apple.iokit.IONetworkingFamily 3.2

    com Apple.Driver.corecapture 1.0.4

    com.apple.iokit.IOAHCIFamily 2.8.0

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.driver.AppleEFINVRAM 2.0

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 414

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Model: iMac11, 3, IM112.0057.B02 of BootROM, 4 processors, Intel Core i5 2.8 GHz, 4 GB, MSC 1.59f2

    Graphics card: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe 1024 MB

    Memory module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020

    Memory module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020

    Airport: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.74.0 - P2P

    Bluetooth: Version 4.4.0f4 16320, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: ST31000528AS, 1 TB

    Serial ATA Device: OPTIARC DVD RW AD - 5680H

    USB device: USB 2.0 Bus

    USB device: Hub

    USB Device: Card reader

    USB device: Hub BRCM2046

    USB Device: USB Bluetooth host controller

    USB device: USB 2.0 Bus

    USB device: Hub

    USB Device: IR receiver

    USB device: ISight built-in

    Crush Bus:

    The system has been hacked to disable paging and memory compression. The effects will be intermittent failure to launch applications and, possibly, a system crash. To undo the hack, please reset the PRAM.

  • I have Outlook Express 6. When I try to send/receive my mail I get this error: Protocol: POP3, Port: 110, secure (SSL): no, error number: 0x800C0133 can anyone help with this please

    I went and read a few articles on this I tried to delete the Folders.dbx, renamed server, flip pass and username. I just can't go there. Can anyone help on this.

    Thank you

    It isn't Folders.dbx which is screwed, it's Inbox.
     
    **************************************************
     
    Error number: 0x800C0133 = a corrupt Inbox.
     
    Move any message you want to save to a local folder that you create. Then, remove the problem of Inbox as follows.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder options | View.
     
    With OE closed, find the box of Inbox.dbx and delete it. Another will be created automatically when you open OE.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3
  • HELP WITH THIS PLEASE VISTA

    OK, I have a hp touch computer smart home and some how it that the OS has got scratched so I found a labtop dell with the same window vista operating system as I had to but I installed it and it works, but after that I'm doing the updates and it takes it back to start in safe mode and it tell dell in the information of the computer screen and I'll use my key of produce for my hp but he already says atived can someone help me all I want to know is how to get EIT to work

    Hello

    You can not make it work.

    If the computer/laptop comes with the preinstalled Windows operating system (Dell, HP, Acer, etc.) or is licensed to OEM System Builders, that the product key that came with the computer/laptop is preinstalled OEM license and is not transferable.

    OEM license/product key (systems of operating pre-installed on Dell, HP, etc.) and the license OEM System Builders are related to the first machine it is installed on and dies when machine who dies.

    Only retail Operating System license that you buy and install yourself, are allowed to be transferred to another machine.

    And retail licenses also can be installed on a machine at one time.

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    If you want to reinstall:

    You can contact your computer manufacturer and ask them to send you a set of recovery disks.

    They should do this for a small fee.

    Your wrong installation could destroy this option.

    And if you have never received a recovery disk when you bought your computer, there should be a recovery on the drive Partition hard reinstall Windows how much you bought your computer.

    The recovery process can be started by pressing a particular combination of the key or keys at startup. (Power on / start)

    Maybe it's F10, F11, Alt + F10, etc., depending on the manufacturer.

    Them or us ask the right sequence of key.

    Some manufacturers have more available Vista recovery disks.

    If this happens, you may need to try this instead:

    You can also borrow and use a Microsoft Vista DVD, which contains the files for the different editions of Vista (Home Basic, Home Premium, Business and Ultimate) must be installed. The product key on your computer / Laptop box determines what Edition is installed.

    Other manufacturers recovery DVDs are should not be used for this purpose.

    And you need to know the version of 'bit' for Vista, as 32-bit and 64-bit editions come on different DVDs

    Here's how to do a clean install of Vista using a DVD of Vista from Microsoft:

    "How to do a clean install and configure with a full Version of Vista '

    http://www.Vistax64.com/tutorials/117366-clean-install-full-version-Vista.html

    And once the operating system is installed, go to your computer manufacturer's website and get the latest drivers for your particular model or laptop computer.

    And phone Activation may be necessary when you use the above installation method.

    "How to activate Vista normally and by Activation of the phone '

    http://www.Vistax64.com/tutorials/84488-activate-Vista-phone.html

    See you soon.

  • HP-ENVY 700-214: help with drivers, please.

    Hello

    I know that the installation can be done, I just need to know if the drivers are from? or will support me the installation of windows 7 Home premium. 64 bit. I can't get an answer from HP support.

    Any help would be greatly appreciated and thank you.

    Bonnie

    Hello:

    Support pages are working again and all the W7 x 64 drivers for your PC are on the link below...

    http://h22207.www2.HP.com/us-en/drivers/selfservice/HP-envy-700-200-desktop-PC-series/5399651/model/6529884

    Don't forget to make your set of recovery disks before installing windows 7, because once you do, the recovery partition very probably will not work any longer.  See this guide for how to do this.

    http://support.HP.com/us-en/document/c03481733

    In order to start from a DVD and to run Windows 7 on your PC, you must first change two settings of the BIOS.

    Check out this guide for which parameters to change.

    http://support.HP.com/us-en/document/c03659945

  • Help with synchronizing please...

    Hi, I have a small business and have been using my office for that... I just bought a laptop to take jobs etc... I want to be able to have new information that I put on laptop to go to the office and vice versa, so that I'm not having to enter data on each device separately. Can someone help me with this?

    Post proposed by the facilitator for the appropriate forum placed

    Hello

    You can use a disk to access your files on both devices. It is preinstalled on your laptop that has Windows 10. For your office, you can download it manually here.

    Store your files in a drive and you can now access on both devices.

    In regards to your concerns about the opening. The WDB files, you need to convert these files. CSV which you can open in Excel.

    If you need assistance, do not hesitate to contact us.

    Kind regards.

  • Drop ' n Go subnet to breast pre-existing network - Help with routing please

    Hi all

    I consider myself the best entry level when it comes to the Cisco ASA 5505, and I appreciate help or direction that someone would be able to provide regarding this question, I'll have. I'm sure there is something out there for this, but I was still not able to understand this with what I found.

    We currently have our installation of infrastructure like this: modem(69.14.72.6/255.255.255.248)-> ASA (192.168.1.1)-> Switch-> hosts and Servers(192.168.0.X\24).

    What I'm trying to do is to drop in a small router somewhere within this network with its own subnet and be able to communicate back him 192.168.0.X network, so it will look something like this: modem-> ASA-> Switch-> hosts and Servers(192.168.0.X\24) & hosts and Servers(192.168.1.X\24).

    I will allow this traffic if all goes well, then that only have 2 interfaces configured on the SAA (0/0 and 0/1-0/5 inside) outside and without changing the configuration of the switch. A few key phrases that come to mind from my research so far are "Hair pin" and "permit same-security-traffic intra-interface". Also, I am aware of the port-forwarding and as I understand it would not as convenient to configure a rule for each device connected to the 192.168.1.X\24 network.

    I hope someone can help me with this question, I've been at this for 3 weeks now.

    Thanks again to all!

    EDIT: Here is a diagram to help explain what I'm trying to do. The area in red is what I'm trying to add to the others that I already have.

    Hi James,

    For the route between the 2 networks, that you will need to either use a layer 3 switch or a "router on a stick".

    Installation of a layer 3 switch would interrupt less to your existing network.

    You are then ASA "inside" interface--> Layer 3 Distribution Switch--> 2 or more switches to access

  • Help with linking picture to a larger size

    Hello

    This may seem a stupid question, but it's something I can't understand.  When I go to a photo on my Muse Web site a link to a larger file, where can I find the address info to put in the link.  My photos are on my hard drive in photos.  What I have to put them somewhere like photo bucket or the such to get an address to put the link?  Thank you for your help.

    Kathleen

    There are a few different Muse photo gallery widgets.

    Looks like you want to use the Lightbox widget.

Maybe you are looking for