huangyuzhang / Fizzy-Theme

🥤A tasty blogging theme for Ghost.
https://fizzy.cc
MIT License
285 stars 68 forks source link

Add your website #20

Open huangyuzhang opened 5 years ago

huangyuzhang commented 5 years ago

Post your website that is using the Fizzy Theme. Interesting and good ones will be added to the here. Make sure you have the description and link in the bottom, something like: image

Format: [Website Name](weblink)

example: [Fizzy.cc](https://fizzy.cc)

example output: Fizzy.cc

P.S. Feel free to add a one-line description that I might use to introduce you.

stevenmccurdy commented 5 years ago

metagnosis

GMichaelRapp commented 5 years ago

Wanted to reach out and thank you for such a wonderful theme. I am currently using it for my author page; however, I am having a few issues. Particularly integration of Subscriber links, social media links, and integrating Disqus. If you have any time to talk about this stuff, please feel free to reach out to me. I want to help you make this the best Ghost theme out there.

[G. Michael Rapp's Author Page]

huangyuzhang commented 5 years ago

@GMichaelRapp Thank you for using the Fizzy Theme!

I haven't got the chance to touch the subscription feature of Ghost yet. I will probably add this in the next few versions.

By social media links, they are presented in the author's page. So in your case, the links are shown under your avatar and user name: https://gregorymrapp.com/author/gmichaelrapp/

For the Disqus integration, you need to insert the code in the Site Footer.

Hope this answers your question. If you have further questions feel free to let me know.

denvergeeks commented 4 years ago

A modified version of the fantastic fizzy theme -- I call it "Vanilla Fizzy":

Gusto Engineering Blog

We all thank you!

huangyuzhang commented 4 years ago

A modified version of the fantastic fizzy theme -- I call it "Vanilla Fizzy":

Gusto Engineering Blog

We all thank you!

A well-modified theme! Glad to see you love the fizzy theme. Cheers!

drvaya commented 3 years ago

Great theme @huangyuzhang, much appreciated.

Check out my website, migrated off from Medium

Kloudzone

huangyuzhang commented 3 years ago

Great theme @huangyuzhang, much appreciated.

Check out my website, migrated off from Medium

Kloudzone

Glad to see you like the theme, cheers! Thanks for the star as well!

mheland commented 2 years ago

Thank you for an amazing theme @huangyuzhang, using it for https://magnushelander.se How did you get the "dots" on the carousel indicating how many images that are loaded in the carousel?

huangyuzhang commented 2 years ago

Thank you for an amazing theme @huangyuzhang, using it for https://magnushelander.se How did you get the "dots" on the carousel indicating how many images that are loaded in the carousel?

Hi there! Glad to see you like the theme and using it for your site. Regarding the "dots" on the carousel, you just need to turn on the "dots" parameter in default.hbs by changing the false to true, at line 100: https://github.com/huangyuzhang/Fizzy-Theme/blob/84bdee98ede97d3219466e57811a93d5313d8f8b/default.hbs#L90-L105

mheland commented 2 years ago

OK, have the dots now - the default CSS has .slick-dotsat position: absolute; bottom: -25px; - they are off screen.

I'm sure there is an elegant way to override, I did the brutal and put the slick slider CSS & fonts on my server at assets/css, and changed partials/showcase.hbs to link the local stylesheet using link rel="stylesheet" href="{{asset "css/slick-theme.css"}}"

Now I can change .slick-dots to position: absolute; bottom: 25px; to make them visible on top of slides.

To load the fonts in assets/fonts I updated slick-slider CSS with

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'),
    url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'),
    url('../fonts/slick.svg#slick') format('svg');

Now I can edit the CSS - font was 1px so changed .slick-dots li button:before to font-size:16px and fixed the colours. Very happy with results - thank you again for an amazing theme.