• Resolved alpmusti

    (@alpmusti)


    I want to use Digg Digg plugin but it blocks my articles because posts are full width how can I change post’s width ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter alpmusti

    (@alpmusti)

    And I also want to change mouse selection I edited ::selection and ::-moz-selection bu didn’t change. How can I do that correctly ?

    Theme Author acosmin

    (@acosmin)

    Hi! I am sorry but this isn’t a support forum for third party plugins. The plugin might not be compatible with this theme.

    The only thing you can do is open style.css, find:

    .single-template-1 .single-content {
    position: relative;
    padding-top: 35px;
    border-top-width: 5px;
    border-top-style: solid;
    line-height: 145%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    }

    Replace it with:

    .single-template-1 .single-content {
    position: relative;
    padding-top: 35px;
    border-top-width: 5px;
    border-top-style: solid;
    line-height: 145%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    padding-left: 50px;
    }

    It will add some padding on the left side.

    Thread Starter alpmusti

    (@alpmusti)

    Sorry about my wording about my problem , Thank you so much for helping me.

    Theme Author acosmin

    (@acosmin)

    You are referring to this code in style.css?

    ::selection {
    	background: rgba(0,0,0,0.9);
    	color: #fff;
    	text-shadow: none;
    }
    
    ::-moz-selection {
    	background: rgba(0,0,0,0.9);
    	color: #fff;
    	text-shadow: none;
    }

    I think you can add !important to make it work, like this:

    ::selection {
    	background: #000 !important;
    	color: #fff !important;
    	text-shadow: none;
    }
    
    ::-moz-selection {
    	background: #000 !important;
    	color: #fff !important;
    	text-shadow: none;
    }
    Thread Starter alpmusti

    (@alpmusti)

    Thank your for helping me , patiently. It worked well , now.

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

The topic ‘How to change Post Page Width’ is closed to new replies.