[Resolved] Customize page viewer

Home Forums Support [Resolved] Customize page viewer

Home Forums Support Customize page viewer

Viewing 15 posts - 1 through 15 (of 19 total)
  • Author
    Posts
  • #391174
    Sebastián

    Is there a way to customize this area and make it more attractive? https://i.imgur.com/iWC08Zg.png

    Maybe some blocks with a little bit of separation between numbers or something like that.

    Thanks!

    #391316
    Leo
    Staff
    Customer Support

    Hi there,

    Maybe something like this?

    .page-numbers {
        border: 1px solid #000000;
        padding: 4px;
        border-radius: 4px;
    }

    Let me know.

    #391889
    Sebastián

    Yes great but is it possible to change the form to something less squared?

    Maybe following this type of design? https://i.imgur.com/laLLr7o.png

    #391978
    Leo
    Staff
    Customer Support
    #392350
    Sebastián

    Great! but i want to edit the hover too!

    Thanks

    #392352
    Sebastián

    And of course a different text color just for this buttons

    #392409
    Leo
    Staff
    Customer Support

    What do you want for hover?

    #392518
    Sebastián

    Exactly the same colours and style of this https://i.imgur.com/laLLr7o.png

    And another question: why the margins are different? https://i.imgur.com/6O0lZK9.png i want them to be equal from both sides.

    Site: https://www.mmarketingonline.com/blog/

    Sorry for all the questions in the last couple of days, i’ve been trying hard to change the little things that annoy me.

    Great support as always and I keep talking good things about this theme and service.

    Thanks Leo!

    #392895
    Leo
    Staff
    Customer Support

    The overall CSS should be something like this:

    .page-numbers,
    a.page-numbers {
        color: #ffffff;
        background-color: #000000;
        border: 1px solid #000000;
        padding: 4px;
        border-radius: 4px;
    }
    a:hover.page-numbers {
        color: #000000;
        background-color: #ffffff;
    }
    .paging-navigation {
        text-align: center;
    }

    You would have to change the color of course.

    #393006
    Sebastián

    AMAZING!

    Altough i missed the response of this

    “And another question: why the margins are different? https://i.imgur.com/6O0lZK9.png i want them to be equal from both sides.

    Site: https://www.mmarketingonline.com/blog/

    Thanks!

    #393076
    Leo
    Staff
    Customer Support
    #393208
    Sebastián

    Yes but i have this code in my css:

    .grid-container {
        max-width: 1400px !important;
    }

    So the padding looks awful when changing it on the customizer. Because blog page and single post pages have different layouts.

    Is it possible to configure a different padding for the single post pages? That would be great.

    #393317
    Tom
    Lead Developer
    Lead Developer

    You could do something like this:

    .single.separate-containers .inside-article {
        padding: 40px;
    }
    #393440
    Sebastián

    Hi Tom

    That code didn’t made any change on my single post pages. Don’t know why.

    I want to change right and left padding because of this: https://i.imgur.com/kDXoId1.png

    The lines are not “centered” with the image

    And also the featured image is not center like the title https://i.imgur.com/PkpCxiG.png

    I don’t know if i made myself clear

    I want it like this: https://i.imgur.com/3TpXIv0.png https://i.imgur.com/WlrHFKv.png

    Thanks!

    #393646
    Tom
    Lead Developer
    Lead Developer

    Your featured image isn’t wide enough to fill that space.

    You can force it to be that wide, but you might lose some quality:

    .page-header-image-single img {
        width: 100%;
    }
Viewing 15 posts - 1 through 15 (of 19 total)
  • You must be logged in to reply to this topic.