CS-3 Posted July 4, 2020 Share Posted July 4, 2020 Site URL: https://www.circlethreedesigns.com/ I am using the Montauk template and I need to create an index page within an index page. Is this not possible? Is there any sort of workaround? Thanks in advance and sorry if this has been asked before, I did not see if when I searched. Link to comment
derricksrandomviews Posted July 4, 2020 Share Posted July 4, 2020 (edited) Not possible, and you cannot put a folder in an index page either or in another folder. You can put a text or button link to an index page in an index page header or footer. You can put an image in the header or footer that has a click thru url to an index page. Or you can create a page with an image block that clicks thru to an index page, and put that page in the index page. Edited July 4, 2020 by derricksrandomviews Link to comment
CS-3 Posted July 5, 2020 Author Share Posted July 5, 2020 That is what I ended up doing. I created a page that had images with text under each image. Each image clicked through to its own page. I would like to make the image fade when the mouse is hovering over it so the end user clearly sees it is clickable. Also, instead of plain text, I would like that portion to either be a button or have the text actually linkable as well as the photo. Link to Page Link to comment
derricksrandomviews Posted July 7, 2020 Share Posted July 7, 2020 (edited) How about when you hover over an image it turns from color to black and white? Custom Css image-block img { transition: .5s ease-in-out; filter: none; } .image-block img:hover { filter: grayscale(1); } If you want the above just on the page you made use this command in advanced header code injection for that page <style> image-block img { transition: .5s ease-in-out; filter: none; } .image-block img:hover { filter: grayscale(1); } <style> Edited July 7, 2020 by derricksrandomviews Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment