I used this following video to install Obsidian -

  • Now because of what I had to do in Centering image globally , it is recommended that at 5:48 we choose relative path instead of shortest.
  • After installation, remember to change the link system in Obsidian as relative path as well!
- I removed the [reading time](reading time) from sites as it was unnecessary - Removed timestamp from index, made custom text in other pages commented out ```ts if (fileData.dates) {

segments.push(formatDate(getDate(cfg, fileData)!, cfg.locale)) }


Replaced with -
```js
const fileName = fileData.name; // Assuming fileData has a name property

// Check if the file is not index.md
if (fileName !== 'index.md' && fileData.dates) {
  const lastUpdatedDate = formatDate(getDate(cfg, fileData)!, cfg.locale);
  segments.push(`Last updated ${lastUpdatedDate}`);
}
  • Completely revamped the date settings and format.
  • Removed discord community from the footer in layout
  • In base.scss the strong tag uses a variable from variable.scss. I changed a few vars here so this is the code:
  $pageWidth: 700px;
 
$mobileBreakpoint: 600px;
 
$tabletBreakpoint: 1000px;
 
$sidePanelWidth: 325px;
 
$topSpacing: 6rem;
 
$fullPageWidth: $pageWidth + 2 * $sidePanelWidth;
 
$boldWeight: 700;
 
$semiBoldWeight: 600;
 
$normalWeight: 400;