লক্ষ্য করুন: প্রকাশ করার পর, পরিবর্তনগুলো দেখতে আপনাকে আপনার ব্রাউজারের ক্যাশে পরিষ্কার করার প্রয়োজন হতে পারে।

  • ফায়ারফক্স / সাফারি: পুনরায় লোড-এ ক্লিক করার সময় শিফট টিপে ধরে রাখুন, অথবা হয় Ctrl-F5 বা Ctrl-R টিপুন (ম্যাকে ⌘-R টিপুন)
  • গুগল ক্রোম: Ctrl-Shift-R (ম্যাকে ⌘-Shift-R) টিপুন
  • এজ: Ctrl ধরে রাখা অবস্থায় Refresh-এ ক্লিক করুন, অথবা Ctrl-F5 টিপুন।
  • অপেরা: Ctrl-F5 টিপুন।
/*** To Top Button ***/

/* Adds a floating "go to top" button on the bottom-right of the screen */
/* Documentation at [[en:w:User:BrandonXLF/TopButton]] */
/* By [[en:w:User:BrandonXLF]] */

.topButtonCircle {
	height: 2.5em;
	width: 2.5em;
	border-radius: 100%;
	box-shadow: 0.05em 0.2em 0.35em 0.05em #b8babd;
	background: #2273f7;
	position: fixed;
	right: 1em;
	bottom: 1em;
	display: none;
	z-index: 999999;
	cursor: pointer;
}

.topButtonCircle:hover {
	background: #1369f4;
}

.topButtonCircle > div {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 12.5px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.backtotop {
	display: none;
}