To remove the "Favorite Links"
Find this line in UIFILE: <if id="atom(ProperTreeLinksHeader)">
Replace the code between the if block (for example, in red below):
<if id="atom(ProperTreeLinksHeader)">
<Element
foreground="themeable(argb(255, 139, 139, 139), windowtext)"
background="themeable(resbmp(800, 6, 0, 0, 0, 0, 0), window)"
margin="rect(0rp, 4rp, -10rp, 0rp)"
padding="rect(9rp,9rp,-10rp,10rp)"
font="gtf(textstyle, TEXT_BODYTEXT, 0)"
/>
</if>
With this line:
So now, you should have something like below:
<if id="atom(ProperTreeLinksHeader)">
<Element
height="0rp"
/>
</if>
To add some left padding (and right) around Favorite Links menu items:
Replace the values in red below:
<CommonPlacesHost
background="themeable(argb(255, 248, 248, 248), window)"
foreground="themeable(argb(255, 86, 86, 86), windowtext)"
padding="rect(0rp,0rp,5rp,0rp)"
/>
With your favored padding value. Saarineames uses the value 3 for both of them (padding="rect(
3rp,
3rp,5rp,0rp)").
Hope that helps