Right-hand menu?

How do I create a right-hand menu similar to this website?
https://copolkmuseum.org/
Thank you !

Hello @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

Thanks for writing in! The example URL is using the Integrity stack with the Fixed Right menu. You can do that as well in your site by going to Cornerstone > Theme Options > Stack and select “Integrity” with the “Light” Design.

You can then go to Cornerstone > Theme Options > Headers > Navbar and select “Fixed Right” position.

Kindly let us know how it goes.

Dear Ruenel, that worked great !

Thank you !

How do I have an arrow that takes the user back to the top of the page when they reach the bottom?

Hey @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

There’s a known issue with the scroll to the top anchor and it was already reported to our development team. In the meantime, you can follow the workaround on this thread.

Hope that helps.

Hi marc_a,
I have created the right-hand menu, https://nature-tech.org/

How do I create a full-page images home page that change similar to https://copolkmuseum.org/

Thank you

Hello @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

In order to make the content section full width as per your given reference site, I would suggest you please add this custom CSS code under Theme options —>CSS

.x-container.max {
max-width: 100%;
width: 100%;
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

Thank you, Prakash,
Is there another way to create the full page image like the home page at https://copolkmuseum.org/ ?
I only want the homepage of https://nature-tech.org/ to be full screen the other pages as they are.
How do I create the changing image effect at https://copolkmuseum.org/ ?
The home page scrolls through five images

Hello @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

Please edit your homepage and change the page template from Layout - Fullwidth to Blank - No Container | Header, Footer. For more details about the different page templates in the theme, please check this out:

Best Regards.

Can you please tell me how to create this full layout with changing images;
https://copolkmuseum.org/

Thank you

Hello @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

The changing images is actually a background image feature of the page. You can enable it by adding two or more background images. Please check out this documentation first:

Just make sure to separate the image URLs with a comma and do not forget to insert the delay and duration.

Kindly let us know how it goes.

Thank you Ruenel ! That worked well.

You can see the the revised website https://nature-tech.org/

How do I remove the two areas shown in the attached images ?

Hey there,

Your home page screenshot looks different than your actual home page. Do you wish to remove the image? The image is part of the content so you need to edit your home page and delete the Image block.

Regarding your About page, the blank area is the Topbar. You can disable it in Theme Options > Headers > Miscellaneous.

image

Hope that helps.

Thank you, Christian!

I removed the Topbar; https://nature-tech.org/

How do I remove the block in the upper part of the home page ?

Hi @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

I have checked the Home Page of your website but didn’t find anything like the screenshot. If you are trying to remove the content box, you can add the following custom CSS to the Theme Options > CSS, but it will affect all the pages.

.entry-wrap
{
    display: none !important;
}

Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes which means we can’t fix it in case it conflicts with something on your site nor will we enhance it. Further customization should be directed to a third-party developer or you can avail One, where we answer the questions beyond normal theme support.

Thanks

Hello,
I would like to create a layout similar to https://copolkmuseum.org/

How do I remove the text block on only the home page? https://nature-tech.org/

Hi @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

If you want that only for the Home Page, you need to add the .home selector to the CSS code previously given. The code will look like the following.

.home .entry-wrap
{
    display: none !important;
}

Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes which means we can’t fix it in case it conflicts with something on your site nor will we enhance it. Further customization should be directed to a third-party developer or you can avail One, where we answer the questions beyond normal theme support.

Thanks

Dear @christian christian and @ruenel ruenel

I would like to create a layout similar to https://copolkmuseum.org/

How do I remove the text block on only the home page? https://nature-tech.org/

I know this is possible as I have done it before, but I cannot remember how

Hi @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

The Entry Wrap, which shows the Text Block comes due to the Page Template you select for the specific page. It seems that you have selected the Blank - Container | Header, Footer, I would suggest you select any of the Page Template with the No Container option which does not put the Entry Wrap to show the content.

Hope it helps.
Thanks

That worked, thank you !

Hi @d2b5d075_a5a7_43d8_a281_1f486e3d31e9,

Glad that we are able to help you.

Thanks

1 Like