Hi there,
First of all sorry for the problem in the links, it was an error from my part here is the links:
https://www.w3schools.com/css/
Regarding the second question, we used the border-radius: 50%
to make the button look round. You can change that by making it: border-radius: 0;
. Here is more information about that CSS property:
https://www.w3schools.com/cssref/css3_pr_border-radius.asp
So you will need to change the suggested CSS code to:
body .x-scroll-top.in {
border-color: black;
background-color: black;
opacity: 1;
border-radius: 0;
transition: all 300ms;
}
body .x-scroll-top.in i:before {
color: white !important;
transition: all 300ms;
}
body .x-scroll-top.in:hover {
border-color: white;
background-color: white;
opacity: 1;
transition: all 300ms;
}
body .x-scroll-top.in:hover i:before {
color: black !important;
transition: all 300ms;
}
Kindly open up new threads for additional questions as it will help us to focus on each issue and give you a better support which you deserve. Having a long threads makes the maintaining job harder and also it will be harder for the other customers to find the correct information if they have similar issues. You are always welcomed to reply to this thread to follow up the same question.
Thank you.