you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (7 children)

The footer links are hardcoded somewhere (yuck), you can find them by searching.

This file https://github.com/libertysoft3/saidit/blob/master/r2/r2/public/static/css/theme-custom.less

Is here: /home/reddit/src/reddit/r2/r2/public/static/css/theme-custom.less

[–]portcity[S] 2 insightful - 2 fun2 insightful - 1 fun3 insightful - 2 fun -  (0 children)

Here's where the footer links are (putting it here so I'll remember it!) Line 1234: /home/reddit/src/reddit/r2/r2/lib/pages/pages.py

Happy almost weekend ....

[–]portcity[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (5 children)

Two issues I've run into in the footer:

Do you know how I can set up the mobile site, aka this link: https://m.portcity.online (right now it just leads to nothing)

And right now this https://portcity.online/wiki/index/ leads to subscribed: forbidden (portcity.online)

This is the link connected to the OffsiteButton: https://saidit.net/s/SaidIt/wiki/index#wiki_apps_.26amp.3B_clients

So I'm not sure why it's forbidden?

[–][deleted] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (4 children)

Do you know how I can set up the mobile site, aka this link: https://m.portcity.online

Yes, you need to set up a DNS entry for this subdomain, and add the subdomain to your cert if you didn't already, then it will work. But note that's not the reddit mobile app or anything fancy, it's just an alternate theme with different CSS. You'd probably be better off investing time into having responsive CSS styles that work on the main normal site (there are some styles in place already that do this, but it needs improvement fo sho).

this https://portcity.online/wiki/index/ leads to subscribed: forbidden

This is related to setting default_sr. So make sure this 'default sub' is to your liking (I think it defaults to frontpage), then make sure you create the index wiki page for that sub, then https://portcity.online/wiki/index will work.

[–]portcity[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (3 children)

Hi! How are you? Everything is going well. I tried out some of 0eye's changes (which you can see at portcity.online , daymode). Can you tell me where in the files I can change the Saidit logo in the top banner and the little icons that appear when links don't surface an image? I know what I'm doing probably still looks very clumsy to you, but remember I was a complete noob at unix before I started working away at the reddit codebase, so I feel like all things considered I've come a long way (thanks to your help).

[–][deleted] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (2 children)

Hey there. Glad you're excited. You can find all of that stuff in reddit.less and theme-custom.less. You can find images by searching for their filenames.

I recommend only making changes using overrides in theme-custom.less so they are all in one spot and you can get updates from us.

[–]portcity[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (1 child)

Ok, I successfully replaced the Saidit logo with a PortCity logo I made in like 5 minutes with this command: $ scp /Users/user/Downloads/portcitylogo.png reddit@x.x.x.x:/home/reddit/src/reddit/r2/r2/public/static/saiditlogo.png

And by looking at the saiditlogo.png file in ranger, I can tell it's the new logo I made now.

And then I did the css refresh, but the logo hasn't changed on my site. Any thoughts?

Also I'm a little confused as to what you mean by "making overrides in theme-custom.less." I did undo all the changes I made in daymode.less, because i understand what you mean about wanting to get updates from you. But how do I use overrides to make changes going forward?

[–][deleted] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

I see it! Maybe it's your browser cache. Just pop open the inspector and make sure 'Disable Cache' is checked when you work on it.

But how do I use overrides to make changes going forward?

Feel free to ignore this, but I recommend that you just only add new lines of CSS to the bottom of whatever .less files you want. Then if we change our styles earlier in the file, 'git pull' will still be able to merge the files, and your styles will remain intact.

So no editing, only adding at the bottom. You can copy and paste to the bottom all you want. It bloats the CSS files a bit, but dealing with CSS conflicts is no fun.