Hello,
Regarding your question, Themler doesn't have a built-in feature or extension specifically named "Fix on Scroll" or a menu container that can be fixed in the top right corner. However, you can achieve the desired effect by using custom CSS and JavaScript.
Here's an example of how you can achieve a fixed menu using CSS:
Open your Themler theme in the Themler application.
Locate the HTML or CSS editor for the specific template or layout where you want the fixed menu to appear.
Add the following CSS code to make the menu fixed:
your-menu-selector {
position: fixed;
top: 0;
right: 0;
}
Replace #your-menu-selector with the actual CSS selector of your menu element. This code will position the menu element fixed at the top right corner of the viewport.
Save your changes and preview the theme to see the fixed menu in action.
If you also want the menu to stay visible even if you scroll the page all the way down, you can add some additional CSS to ensure it remains on top of other elements:
your-menu-selector {
position: fixed;
top: 0;
right: 0;
z-index: 9999;
}
The z-index property ensures that the menu appears on top of other content.
Remember to replace #your-menu-selector with the actual CSS selector of your menu element.
If you're looking for more advanced functionality or if Themler has introduced new features since my knowledge cutoff, I recommend referring to the official Themler documentation, support resources, or the Themler community for the most up-to-date information and assistance.
Hello,
Regarding your question, Themler doesn't have a built-in feature or extension specifically named "Fix on Scroll" or a menu container that can be fixed in the top right corner. However, you can achieve the desired effect by using custom CSS and JavaScript.
Here's an example of how you can achieve a fixed menu using CSS:
Open your Themler theme in the Themler application.
Locate the HTML or CSS editor for the specific template or layout where you want the fixed menu to appear.
Add the following CSS code to make the menu fixed:
#your-menu-selector {
position: fixed;
top: 0;
right: 0;
}
Replace #your-menu-selector with the actual CSS selector of your menu element. This code will position the menu element fixed at the top right corner of the viewport.
Save your changes and preview the theme to see the fixed menu in action.
If you also want the menu to stay visible even if you scroll the page all the way down, you can add some additional CSS to ensure it remains on top of other elements:
#your-menu-selector {
position: fixed;
top: 0;
right: 0;
z-index: 9999;
}
The z-index property ensures that the menu appears on top of other content.
Remember to replace #your-menu-selector with the actual CSS selector of your menu element.
If you're looking for more advanced functionality or if Themler has introduced new features since my knowledge cutoff, I recommend referring to the official Themler documentation, support resources, or the Themler community for the most up-to-date information and assistance.