I can't seem to find where to unfreeze the bar that lists my pages, even in the HTML sections. I just want it to stay put and scroll up when you move down the page. It blocks ou
This will be a "feature" of the theme and may not be possible to change by any option. Unless you're really into coding I would simply pick a different theme. Glyn
Oh, I was hoping I could find it under a certain section of the coding editor and simply turn it off. I really like the theme though lol. Thanks!
See more comments
Can anyone help me with the minezene theme please?
I can't seem to find where to unfreeze the bar that lists my pages, even in the HTML sections. I just want it to stay put and scroll up when you move down the page. It blocks ou
Hello Megan, if you mean the MineZine theme then you can make your menu static by making a small change.
Go to Editor, and search for the following line in your style CSS:
#wrapper .sticky-nav {
max-width: 956px;
position: fixed;
top: 0;
z-index: 200;
}
Now change the position and top properties to look like this:
position: relative !important;
top: auto !important;
Just be mindful that if you update your theme, it will overwrite this change. So you will have to reapply the change each time you make an update. It's a good idea to look into the concept of creating a child theme that way updates will only affect the parent, and your custom styling and code modifications will be preserved.
Let me know how it works.
This will be a "feature" of the theme and may not be possible to change by any option. Unless you're really into coding I would simply pick a different theme. Glyn
Oh, I was hoping I could find it under a certain section of the coding editor and simply turn it off. I really like the theme though lol. Thanks!
See more comments
Hi y'all, quick question. When researching scams, do I necessarily need to buy the product? I'm on a really tight budget at the moment. Or can I just fill out the content more a
You can research the product and see what other people are saying and put it in your own words.
I review products all the time without buying them. Just read several other reviews to get a good understanding of how they work and write one in your own words.
I usually warn people about hype and unreasonable claims which are usually pretty easy to spot.
Thank you very much, I saw others showing screen shots of member areas etc. so I didn't know if it was totally necessary. Thanks!
See more comments
Do I really need to buy the product when researching scams?
Hi y'all, quick question. When researching scams, do I necessarily need to buy the product? I'm on a really tight budget at the moment. Or can I just fill out the content more a
You can research the product and see what other people are saying and put it in your own words.
I review products all the time without buying them. Just read several other reviews to get a good understanding of how they work and write one in your own words.
I usually warn people about hype and unreasonable claims which are usually pretty easy to spot.
Thank you very much, I saw others showing screen shots of member areas etc. so I didn't know if it was totally necessary. Thanks!
See more comments
Hello Megan, if you mean the MineZine theme then you can make your menu static by making a small change.
Go to Editor, and search for the following line in your style CSS:
#wrapper .sticky-nav {
max-width: 956px;
position: fixed;
top: 0;
z-index: 200;
}
Now change the position and top properties to look like this:
position: relative !important;
top: auto !important;
Just be mindful that if you update your theme, it will overwrite this change. So you will have to reapply the change each time you make an update. It's a good idea to look into the concept of creating a child theme that way updates will only affect the parent, and your custom styling and code modifications will be preserved.
Let me know how it works.
Thanks! I'll try it as soon as I can get a few minutes of peace :)