First and foremost: Access is not suited for wireless connections. You may be okay with it now, but it's just a matter of time before you corrupt your database (often without hope of recovery). Access needs a very stable, fast, and wide network path, and
WiFi doesn't fit at least one of those criteria.
If you're using linked tables, you're already using a form of split database. A Split Database contains a Backend (tables only) and a FrontEnd (everything else). The FrontEnd is linked to the Backend, and a copy of the Frontend is installed locally on each
machine (i.e. it is NOT shared from a network location). You may also have some local tables in the FE, but in general those store local user settings and such. Data that is shared among users should always be stored in the common backend.
I'd also caution you against using Dropbox as a location for your backend. Doing this will result in multiple copies of your backend, since DropBox will create one for each individual "Drop" location, which means you never know if you're working with the
correct "version" of the backend. You would be much, much better off placing the backend on a network share and linking to it using the full UNC path:
//machinename/folder/database.mdb
If you do this, and if you ensure that location is available to all machines, then you won't have to worry about where the file is located.