• Resolved bustel

    (@bustel)


    hello there

    I have a technical problem I think…

    this is the code that I use:
    [pagelist_ext class="page-list-cols-2" image_width="150" image_height="100" include="610,677,688,695,700,704,708,711,714" limit_content="180"]

    So there are 9 pages to show on 2 coloms, there are odd pages, so page 9 set automatic to the right side, i would like it to set to the left side, how can I do this? Is there an extra option to do this?

    thank you to re-ply my problem.
    Manuel

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bustel

    (@bustel)

    I have found what the problem is
    open file: css/page-list.css

    change this:

    .page-list-ext .page-list-ext-item {
    	clear: both;
    	margin: 10px 0 30px 0;
    	-webkit-column-break-inside: avoid;
    	page-break-inside: avoid;
    	break-inside: avoid;
    }
    

    in this:

    .page-list-ext .page-list-ext-item {
    	clear: both;
    	margin: 10px 0 33px 0;
    	-webkit-column-break-inside: avoid;
    	page-break-inside: avoid;
    	break-inside: avoid;
    }
    
    Plugin Author webvitalii

    (@webvitaly)

    Hi.
    Can you share the URL with the issue?

    And IMHO your change seems very specific and related a lot to your theme.

    • This reply was modified 9 years, 7 months ago by webvitalii.
    Thread Starter bustel

    (@bustel)

    It was just a margin problem, so you are right.

    Thread Starter bustel

    (@bustel)

    Code before page-list.css:

    .page-list-ext .page-list-ext-item {
    	clear: both;
    	margin: 10px 0 33px 0;
    	-webkit-column-break-inside: avoid;
    	page-break-inside: avoid;
    	break-inside: avoid;
    }

    Replaced code page-list.css:

    .page-list-ext .page-list-ext-item {
    	clear: both;
       	padding-top: 1px;
    	-webkit-column-break-inside: avoid;
    	page-break-inside: avoid;
    	break-inside: avoid;
    }

    the margin have I deleted and replaced with padding-top
    that solved my problems over the entire site.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘align to the left side’ is closed to new replies.