@phenomlab said in Layout Issues/Transparency:
Does it work properly now?
Yes, it does 🙂
@crazycells This should be fixed now
It’s caused by the addition of breadcrumbs into the Harmony theme which alters the page layout. Sudonix uses a heavily customised theme
@crazycells said in problem with /search page:
additionally, it is still not that important, but I believe the info “ 2021-2023 sudonix.org” at the bottom of the page should be 2024… at some point we should stop living in the past and seize the future lol
Good catch. This has been fixed also using js
to calculate the current year so it will roll forward itself in future.
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
<div class="copyright">© 2021-<span id="year"></span> sudonix.org</div>
i can not do it Mark.
@cagatay Which part?
this one
@cagatay That’s in the footer widget on your site. You need to add the js
at the bottom of the page including the <script>
and </script>
tags plus all text in between those, then modify the line I referenced with the updated code.
code is not working in my js
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
@cagatay Should work now. The code
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
Needs to be placed at the bottom of the footer widget code
mm i added it on js code side ,.) thank you Mark see you did it.
@cagatay if you added it into the ‘js’ custom code area you should remove it from there.
no deleted nothing there.
@phenomlab yes, search page is fixed thanks