• Resolved jaroslawistok

    (@jaroslawistok)


    Hello

    On the picture to your theme there are only 2 lines excerpt.
    But live there are about 7-10 lines.
    What to do when i only want to have only one line?
    The is no option for this 🙁

Viewing 15 replies - 1 through 15 (of 21 total)
  • Theme Author ScriptsTown

    (@scriptstown)

    Hi,

    In the theme screenshot, there is only the title of the post.

    You can use this option to hide the excerpt for all posts and only show the title:
    “Appearance” > “Customize” > Blog Options” > “Hide summary for all posts in a grid.”

    Also, apply this CSS (“Customize” > “Additional CSS”) to limit the title to 2 lines:

    .pb-grid-post.pb-article .entry-header .entry-title {
    	overflow: hidden;
    	text-overflow: ellipsis;
    	display: -webkit-box;
    	-webkit-box-orient: vertical;
    	-webkit-line-clamp: 2;
    }

    Similarly, if you show post expert as well, then limit it with this CSS:

    .pb-grid-post .entry-summary > p:not(.more-link-wrap) {
    	overflow: hidden;
    	text-overflow: ellipsis;
    	display: -webkit-box;
    	-webkit-box-orient: vertical;
    	-webkit-line-clamp: 2;
    }

    You can also make use of the “More” block in the post editor for each post to limit the excerpt. But, this will need to be done for each post.

    Thread Starter jaroslawistok

    (@jaroslawistok)

    I new this option without excerpt.
    I want exactly only 1 line to see but css doesn’t work

    It shows something in red:

    https://e1.pcloud.link/publink/show?code=XZp4MQZtT6XTef3NeF1lYJ0ssAelX4qG2mk

    Theme Author ScriptsTown

    (@scriptstown)

    In your CSS, you didn’t close these two blocks of CSS statements with }.

    Can you check the code above and copy it carefully with both { and } (You just have opening curly brackets for both CSS code).

    Thread Starter jaroslawistok

    (@jaroslawistok)

    Thank you, it still shows red but it works 🙂
    I am also try to hideRead more and category. Hope I find it 🙂

    Thx!

    Thread Starter jaroslawistok

    (@jaroslawistok)

    I am trying to get rid of Read more. Some shows some not.

    https://e1.pcloud.link/publink/show?code=XZXPMQZyp8aNcvWniL9N4K6OuEGHkcGp8dk

    Theme Author ScriptsTown

    (@scriptstown)

    To hide read more, use this CSS:

    .more-link-wrap {
    	display: none;
    }

    There is already an option to hide the categories in blog options.

    Thread Starter jaroslawistok

    (@jaroslawistok)

    thx, what a pity that options available in most themes are only with css to get 🙁
    Maybe in next update?

    🙂

    terrible, hiding Author on frontpage hides it also on postpage 🙁 really Bad.

    Thx

    Thread Starter jaroslawistok

    (@jaroslawistok)

    I centered the featured picture on single post but would like to hide this.
    Also no option 🙁

    Other issue:

    On mobile are pictures somehow shown with wrong proportions (youzify means it depends on theme)

    https://e1.pcloud.link/publink/show?code=XZwcxQZ67qX7Iayw3ubHVRKCIJsrYk03niX

    P.S. I like your theme in many ways, this second and social menu for example but mayby it comes an update with more options 🙂

    Theme Author ScriptsTown

    (@scriptstown)

    Hello,

    You can use a plugin like this to hide it:
    https://ww.wp.xz.cn/plugins/conditionally-display-featured-image-on-singular-pages/

    I’m not sure what device/browser it is that shows stretched image. I have tested it on different mobile devices. It doesn’t stretch. Your mobile browser may be very outdated.

    Next time, for different support queries, I recommend you to open a different support thread.

    Thanks!

    Thread Starter jaroslawistok

    (@jaroslawistok)

    Please send rather CSS code, not yet another plugin more 🙂
    I have Iphone with newest update.
    On all browsers are pictures without right proportions 🙁

    Theme Author ScriptsTown

    (@scriptstown)

    This will hide featured image on single post:

    .pb-singular>.post-thumbnail {
        display: none;
    }
    Thread Starter jaroslawistok

    (@jaroslawistok)

    Or maybe just look with your Mobile:

    https://rainbowsongs.org/activity/

    Theme Author ScriptsTown

    (@scriptstown)

    The page URL you mention and its content layout and styles CSS is coming from a plugin “Youzify”. That content in the middle of this page is not a part of the theme. So, the HTML markup for images and its CSS is coming from plugin on this page.

    You can still try this CSS (it is current has a height of 100%, so set it to auto):

    .youzify .activity-content img { height: auto; }

    I think you should contact the plugin author for this one.

    Thread Starter jaroslawistok

    (@jaroslawistok)

    Oh, yes , thanks a lot.
    I will contact him 🙂

    Thread Starter jaroslawistok

    (@jaroslawistok)

    https://ww.wp.xz.cn/support/topic/pictures-wrong-proportions-in-stream-on-mobile/#post-16196083

    Is this possible that on Apple phones will be shown differently than on Android?

Viewing 15 replies - 1 through 15 (of 21 total)

The topic ‘Excepts on frontpage’ is closed to new replies.