Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Hackathon Participation" text on experience page overlaps with "Get in Touch" section #1329

Closed
moritz-gerster opened this issue Feb 5, 2023 · 6 comments · Fixed by #1331

Comments

@moritz-gerster
Copy link

moritz-gerster commented Feb 5, 2023

image

This bug seems to be very new, I just noticed it both on my personal website on the exemplary project website.

@MoofyWoofy
Copy link
Contributor

This is because of the new version of Swiper, to fix it, use Swiper version 8.4.6

@moritz-gerster
Copy link
Author

moritz-gerster commented Feb 16, 2023

This is because of the new version of Swiper, to fix it, use Swiper version 8.4.6

Thank you @MoofyWoofy! Sorry for this naive question, but how do I install/use Swiper 8.4.6? I am not running this code in my own virtual environment as I do for my python files where I can install packages using pip.

@MoofyWoofy
Copy link
Contributor

Inside experience.html

You will find this a link similar to this https://unpkg.com/swiper/swiper-bundle.css
Replace it with this, https://unpkg.com/swiper@8.4.6/swiper-bundle.css
You can do this for the 2 CSS and 1 JS file.

@moritz-gerster
Copy link
Author

Thank you @MoofyWoofy. I changed it in experience.html however not in the other 2 CSS and 1 JS files as I did not find a proper place to do it there.

However, now loading my experience page takes very very long and the hackathon figure completely disappeared: https://moritz-gerster.github.io/experience.html

@MoofyWoofy
Copy link
Contributor

Sorry I meant, inside experience.html, there should be these lines

<link rel="stylesheet" href=" https://unpkg.com/swiper/swiper-bundle.css" />
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>

Replace them with this respectively

<link rel="stylesheet" href=" https://unpkg.com/swiper@8.4.6/swiper-bundle.css" />
<link rel="stylesheet" href="https://unpkg.com/swiper@8.4.6/swiper-bundle.min.css" />
<script src="https://unpkg.com/swiper@8.4.6/swiper-bundle.min.js"></script>

@moritz-gerster
Copy link
Author

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants