Move up Slideshow page buttons
-
I have created a few slideshows where you have 20 images and captions to read through, but the buttons for moving ahead to the next page are beneath the “AddThis” content and similar post links. Is there either a) a way to move up the page navigation menu; or b) a better plugin for my slideshows?
Thanks in advance!
ChrisThe page I need help with: [log in to see the link]
-
You should ask at the plugin’s support forum.
You could implement a CSS only solution by making the .entry-content container display as flex-box, then specify order properties of all lower elements you wish to re-order. Flex-box elements without order properties will appear first in their natural order before the
order: 1;element appears.Thank you very much! The responses were sent to my mail’s spam folder.
After looking around based on what you suggested, I’m guessing you mean for me to put
display:flexunder.entry-content. When I tried that, all the content was jumbled up on top of each other. I can usually find my way through problems by clicking on “Inspect Element” in Firefox and tinkering with the code, but I can’t figure out what file contains the ordering for the post’s elements. This has me totally lost.-
This reply was modified 7 years, 4 months ago by
crushnik.
Yes, the element inspector is indispensable. The default order is the “natural” order defined by the order in which the HTML elements occur in the page. You’ll need to assign order proprieties to all elements above the navigation that you want to be below the navigation. You can add the rules required to the Additional CSS area of the customizer.
I tried
display: flex;in the inspector tool tied to your page. The elements then stacked horizontally by default, so they became extremely narrow. You also needflex-direction: column;to get natural display back. Then assignorderproperties as needed.I’m sorry that notifications go to spam. People who do not understand the notifications system tend to mark their own notifications as spam instead of coming back here and unsubscribing. It affects everyone else when they do that. If you haven’t, please tell your mail system that forum notifications are not spam, it can help with the filtering of other notifications. Also, adding the notification sender to your contacts can help even though it does no good to send mail to that address.
Spectacular, thank you for your quick responses.
-
This reply was modified 7 years, 4 months ago by
The topic ‘Move up Slideshow page buttons’ is closed to new replies.