We're merging with GenerateBlocks! Learn more here.

[Support request] title in bold

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support title in bold

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #34401
    Gonzalo
    Participant

    Hello, I would like to show the title in bold.
    Thanks. Greetings.

    #34422
    elvin
    Moderator

    Hi there,

    Try adding this CSS:

    .wp-show-posts-entry-title {
        font-weight: 700 !important;
    }

    This assumes the font you use for your site has the appropriate font-weight variant. 😀

    #34424
    Gonzalo
    Participant

    Thanks Elvin,
    To introduce the css on a specific page, would you recommend the simple Css plugin? I work with GP Pro and GB Pro.

    -I would also need to increase the thickness of the border, (of the box).

    Greetings!

    #34436
    elvin
    Moderator

    The customizer’s Additional CSS text area should be enough. You just need to get the selectors unique to a page.:)

    WordPress pages add the post type and the page/post ID to the body tag’s class attribute, you can do it from there.

    Example – https://share.getcloudapp.com/d5u6LKX1

    I can use this to apply to this page specifically.

    Example CSS:

    body.page-id-2086 .wp-show-posts-entry-title {
        font-weight: 700 !important;
    }

    This CSS specifically styles all WPSP titles inside body tag with class name page-id-2086.

    Since this particular class name is unique/added to this page only, it will only apply to this page.

    -I would also need to increase the thickness of the border, (of the box).

    try this CSS:

    
    .wp-show-posts-inner {
        border: 2px solid red;
    }

    Change the values to your preference.

    #34441
    Gonzalo
    Participant

    Thanks for the complete information,
    I have already tried it, but the css to increase the thickness of the edges of the box, seems not to work. What could be happening?
    Any explanation or alternative?

    Thanks again!

    #34446
    elvin
    Moderator

    Can you link me to the specific page you’re working on? To check why it isn’t working. 😀

    #34452
    Gonzalo
    Participant

    Okay, there would be no problem … how do we do it? I am currently working on hosting in the staging, do you need to access the backend?

    #34457
    elvin
    Moderator

    No need for backend access. I only need to inspect the front-end to check if anything is messing things up. (ex. caching, broken syntax, etc)

    But if you wish for the staging link to be private, you can send it through our contact page – https://wpshowposts.com/contact/

    Please add the link to this topic for context. 😀

    #34499
    elvin
    Moderator

    I’ve visited the site but I wasn’t able to check the WPSP list as it is currently on maintenance mode. Can you temporarily disable it so I can check?

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.