Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dickinsondynamics

    (@dickinsondynamics)

    Forgive the delayed response. Personal drama, yada yada.

    I do have custom CSS in place to make the layout work since the default wouldn’t format correctly. Any ideas if these are causing the issue?

    /* Single Sermon page layout */
    .wpfc_sermon-template-default .site-content > .ast-container {
        max-width: 1240px !important;
    	display: flex;
    	justify-content: center;
    	margin-bottom: 20px;
    	border: 0px solid;
    }
    
    /* Single Sermon Feature Image Alignment */
    .wpfc-sermon-single-image-img {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    	max-height: 300px;
    }
    
    /*Sermon Archive Entry Layout */
    .wpfc-sermon-container {
    	max-width: 1240px;
    	margin: 0 auto;
    }
    
    .wpfc-sermon-inner {
        display: flex;
        flex-flow: row wrap;
        padding: 20px 0;
        border-bottom: 1px solid var(--ast-border-color);
    }
    Thread Starter dickinsondynamics

    (@dickinsondynamics)

    Thank you! Got me on the right track. Fixed the problem by adding this to the template section of content-sermon-wrapper-start.php:

    case 'astra':
    	echo '<div id="primary"><div id="content" role="main" class="wpfc-sermon-container wpfc-astra ' . $additional_classes . '">';
    break;
Viewing 2 replies - 1 through 2 (of 2 total)