CSS Code, Scroll Feature
-
I need to swap the arrows around in the scroll feature in the pictorico theme. I would like the left arrow to point to the previous sticky post and the right arrow to point to the next sticky post, but right now, the arrows point to the posts going in the opposite direction.
Can anyone help me write code for this? I don’t know css code and your help would be greatly appreciated!
The blog I need help with is: (visible only to logged in users)
-
Try adding this to your existing CSS rules, it should swap the sides and arrows around:
.site-main .post-navigation .nav-next a { float:left; padding: 15px 15px 15px 65px; } .site-main .post-navigation .nav-previous a { float:right; padding: 15px 65px 15px 15px; } .site-main .post-navigation .nav-next .meta-nav:before { content:""; left:0; right:auto; } .site-main .post-navigation .nav-previous .meta-nav:before { content:""; right:0; left:auto; } -
I am adding this now. Can you tell me how to add the character in the quotations following the content command. What is that box-like character?
-
- The topic ‘CSS Code, Scroll Feature’ is closed to new replies.