Custom css code

Hi, I am new to Sharetribe and willing to test if before deciding to subscribe.

How do I go about finding out to change the font throughout the site?

I also want to remove the dark grey edges on each side of pictures of my listings.

Thanks for the help.

Hello Meteor,

You can find the CSS in app/assets/stylesheets/. If you’re lazy like me, main.scss applies to just about every page, though you’ll need to go into the Landing Page folder if you want to apply a style to that.

Thanks Jeremy. Sorry but I am not a programmer. My programming skills don’t extend beyond VBA.
Is that really difficult to change the font if I am not a programmer. I am not sure I understood where to change that.

I thought I could just go in Sharetribe Go → Menu Advanced → Custom script and write a few lines to change the font. Is that not the case?

Hello, Meteor ! Nice to meet you. I am a member also newly subscribed one.

Yes, you can do the custom scripting using Custom script input form. I am not sure what font family you would use for your website. Hopefully you can use Google font.

In the first form of the custom script page, you can insert following code to change the all website font into the google ROBOTO font. (for example)

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">

and in css form at the end of the custom script page…

body * {
 font-family: 'Roboto', sans-serif; 
}

Hope this can help you. We can discuss more

Thank you.

Vladimir