• Resolved serenikitty

    (@serenikitty)


    Using Argent Child theme. Looking to edit the bottom of my portfolio projects, where there is an arrow and a link to the next portfolio project. These are not in the same order as displayed on the front page, and I would like them to be. When I first created my projects I did not create them in the proper order, so I had to change the dates so argent would reorder them the way I wanted. I think this is why I am having this issue.

    Also, when typing in a general project textbox or a page textbox, when I hit Enter, it seems to be double spacing instead of single spacing. Hopefully easy fix for this? Thanks in advance for any help.

    https://serenikitty.com/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter serenikitty

    (@serenikitty)

    Sorry for all the questions, guys. Any thoughts on this one? How do I go about editing the links at the bottom of my projects?

    Hi there,

    Looking to edit the bottom of my portfolio projects, where there is an arrow and a link to the next portfolio project. These are not in the same order as displayed on the front page, and I would like them to be.

    Sure, this CSS will flip the arrangement of the links below the portfolio projects, and make the arrows point in the correct directions.

    So when you’re viewing Apparel, Shirts will be on the left and Art will be on the right:

    .single-jetpack-portfolio .nav-next:after {
        content: "";
        margin-left: 0;
    }
    .single-jetpack-portfolio .nav-next:before {
        content: "\00ab";
        margin-right: 5px;
    }
    .single-jetpack-portfolio .nav-previous:before {
        content: "";
        margin-right: 0;
    }
    .single-jetpack-portfolio .nav-previous:after {
        content: "\00bb";
        margin-left: 5px;
    }
    .single-jetpack-portfolio .nav-previous {
        float: right;
        text-align: right;
    }
    .single-jetpack-portfolio .nav-next {
        float: left;
        text-align: left;
    }

    Since you’ve made your own child theme, feel free to add that code directly to your Child Theme’s CSS, or you can use the the CSS editor included in the Customizer as of WordPress 4.7. If you want to add it through the Customizer, you can go to Appearance > Customize > Additional CSS and add it there.

    when typing in a general project textbox or a page textbox, when I hit Enter, it seems to be double spacing instead of single spacing.

    Try holding down Shift and then press the enter/return button at the same time. That should allow you to single space within the editor.

    Thread Starter serenikitty

    (@serenikitty)

    You’re the best. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Links to projects at the bottom of portfolio projects pages not in proper order’ is closed to new replies.