Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I noticed if I have two separate forms on the page that both use the strip processor that screws things up and causes this error.

    I expect I can make a more complicated form to fix the problem.

    dirtriverdesign

    (@dirtriverdesign)

    This will go in your child theme… and you will need to edit the thumbs generation to make it look OK.

    
    /*--------------------------------------------------*/
    /*------------[Horizontal Car Layout]---------------*/
    /*--------------------------------------------------*/
    /*------[Change the image size in wp-car-manager/src/Plugin.php]----------*/
    /*------[Regenerate thumbs after you change the size. I used 250px]-------*/
    
    @media only screen and (min-width: 960px){
    
    /*---[Make sure to change your page ID number to the page you want to change]-----*/
    .page-id-41 li.wpcm-listings-item {
    display:inline;
    float: left;
    width: 25%; /*------------[use 33.3 if you want 3 wide]---------------*/
    }
    
    .page-id-41 .wpcm-vehicle-listings .wpcm-vehicle-results-wrapper .wpcm-vehicle-results li.wpcm-listings-item a .wpcm-listings-item-description {
        display: none; /*------------[hide Listing info]---------------*/
    }
    
    .page-id-41 .wpcm-vehicle-listings .wpcm-vehicle-results-wrapper .wpcm-vehicle-results li.wpcm-listings-item a .wpcm-listings-item-meta {
        width: 100%;
        padding-left: 1em;
        text-align: left;
        float: left;
    }
    
    .page-id-41 .wpcm-title { 
    display: inline !important; /*------------[Display title]---------------*/
    width: 100%;
    } 
    
    .page-id-41 .wpcm-vehicle-listings .wpcm-vehicle-results-wrapper .wpcm-vehicle-results li.wpcm-listings-item a {
        padding-left: 0px;
    }
    
    /*------------[Makes the image larger]---------------*/
    .page-id-41 .wpcm-vehicle-listings .wpcm-vehicle-results-wrapper .wpcm-vehicle-results li.wpcm-listings-item a .wpcm-listings-item-image-wrapper {
        width: 95%;
        height: auto;
        position: relative;
    }
    }
    }
    
    /*--------------------------------------------------*/
    /*--------[End Horizontal Car Layout]---------------*/
    /*--------------------------------------------------*/
    
Viewing 2 replies - 1 through 2 (of 2 total)