I preferred the old way: the full path displayed at the top of the screen, even when scrolling the note.
Proposed solution
Give a settings option to display full file path in mobile. Allow sufficient width to view it properly.
(For previous versions I also created a snippet to shrink the font of the file path. This made whole path readable unless it was a very long path. I would like to adjust the font size again, but I don’t mind doing this in a snippet.)
Current workaround (optional)
I’ve added “Copy current file path from vault folder” to my mobile toolbar, and view the copied text popup from the Android system.
It looks like the path is still there and can be exposed by a CSS snippet. I don’t have time to mess with it right now, but here is a screenshot showing the markup and classes.
I miss having the path available too, tho I know it’s an unusual feature among apps. For my purposes it is probably enough to just know whether the note is in the root folder or not. I’m going to try to get a folder icon to appear if there is any folder path, and ideally to have it reveal the path when tapped.
edit: slightly updated version to take care of longer paths going off screen to the left. Also pushed the main content area down a bit. What to do with longer paths? Not sure if I’ll stick with this, but trying it for now.
/* for "show inline-title" disabled */
.is-phone .workspace-leaf-content[data-type="markdown"] .view-header-title-container {
display: inline-flex;
overflow: visible;
padding-top: 60px;
}
.is-phone .view-header-title-parent {
display: inline-flex !important;
min-width: max-content !important;
padding-left: 50px;
}
/* move main content down a bit to make way for the file path */
.is-phone .workspace-leaf-content[data-type="markdown"] .view-content {
padding-top: 20px;
}
In Obsidian 1.11.6, you should be able to see the path if you disable “inline title”. The title will be displayed in the tab area along with the path.
I’ve turned off the workaround snippet to see the official implementation. Since longer note names can push the path completely out of view, and too-wide note names are truncated anyway, I’d like it if a little of the path could always be visible. An ellipsis and the last slash would be enough for me.