Bob_B Posted January 7, 2023 Share Posted January 7, 2023 (edited) I am in the process of revamping my 4yo SS Momentum website. I currently have 5 navigation link buttons on my home page designed from a cover page (www.belasphoto.com). How do I add more buttons? If I go to my Home page in Pages and hover over any of the 5 buttons, I can click "edit action", which brings up a left column list of the 5 navigation buttons on the cover page and their settings. I see no way to add an additional one, nor do I see a way to delete a current action. If you have a minute, please post where to look to add or delete navigation action buttons on a Momentum cover page. Thanks. Edited January 7, 2023 by Bob_B clarification I am a retired university professor (microbial genetic research), an avid photographer, and the designer of my own webpage, www.belasphoto.com Link to comment
Bob_B Posted January 7, 2023 Author Share Posted January 7, 2023 On the SS Help Center, it says that the Momentum cover page has up to five navigation links. I guess this is hardwired into this template. Are there any work-arounds to add more? Plugins? Code inserts? I am a retired university professor (microbial genetic research), an avid photographer, and the designer of my own webpage, www.belasphoto.com Link to comment
tuanphan Posted January 8, 2023 Share Posted January 8, 2023 If you use a Business Plan or higher, we can add code to add more navigation buttons. You can share link to cover page, we can help easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Bob_B Posted January 8, 2023 Author Share Posted January 8, 2023 (edited) My coverpage url is: https://www.belasphoto.com/. I'm on the business plan. Edited January 8, 2023 by Bob_B clarification I am a retired university professor (microbial genetic research), an avid photographer, and the designer of my own webpage, www.belasphoto.com Link to comment
Solution Bob_B Posted January 9, 2023 Author Solution Share Posted January 9, 2023 I found a css code insert that works. This will add two buttons: <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <li id="button1"> <a href="https://www.google.com"> Purchase Prints </a> </li> <li id="button2"> <a href="https://www.google.com"> Get Notified </a> </li> <script> $( document ).ready(function() { $( "#button1" ).appendTo( $( "ul" ) ); $( "#button2" ).appendTo( $( "ul" ) ); }); </script> I am a retired university professor (microbial genetic research), an avid photographer, and the designer of my own webpage, www.belasphoto.com 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