• Resolved tuhinbiswas98

    (@tuhinbiswas98)


    how to make full width post without any sidebar for any particular category? i want to use it for full page iframe? any way to do this? dont want to use page want to use post ty for help

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author acosmin

    (@acosmin)

    Sorry, it’s not possible

    Thread Starter tuhinbiswas98

    (@tuhinbiswas98)

    oh that bad ?? can you tell me how to change

    https://oi58.tinypic.com/xpqbd0.jpg

    this … into Read More like this pic

    https://oi59.tinypic.com/262krjq.jpg

    Theme Author acosmin

    (@acosmin)

    The only way you can do that is by opening ../post-templates/content.php and replacing:

    <a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>"><i class="fa fa-ellipsis-h fa-lg"></i></a>

    with:

    <a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>">Read More</a>

    Also open style.css find these lines:

    .post-template-1 .details .post-small-button a {
    display: block;
    width: 48px;
    height: 100%;
    }

    replace with:

    .post-template-1 .details .post-small-button a {
    display: block;
    height: 100%;
    }

    and:

    .post-template-1 .details .post-small-button {
    width: 48px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    font-size: 11px;
    -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    }

    with:

    .post-template-1 .details .post-small-button {
    text-align: center;
    padding: 0 20px;
    border-width: 1px;
    border-style: solid;
    font-size: 14px;
    -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    box-shadow: 0 2px 0 rgba(225,225,225,0.5);
    }
    Thread Starter tuhinbiswas98

    (@tuhinbiswas98)

    ty ty it work fine ?? Support is realy good ty ty

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘full width post without any sidebar’ is closed to new replies.