• Resolved block09

    (@block09)


    What is the right way to change the fonts size of the slide box title?
    This is my blog site, please click the photo for opening the light box.
    [ redundant link removed ]
    i would like to change the fonts size from the original 23px to 18px
    I had try to correct the css (themes/default/sass/style.scss)
    at the appearance plugin page but it fails to affect the change.

    Ref:
    //Title
    148 | $title-size: 23px; <<<<<<<
    149 |
    150 | .slb_data_title, .slb_group_status {
    151 | font-family: ‘Yanone Kaffeesatz’, arial, sans-serif;
    152 | font-size: $title-size;
    153 | margin-right: .2em;
    154 | display: inline-block;

    • This topic was modified 4 years, 2 months ago by Jan Dembowski.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • I had try to correct the css (themes/default/sass/style.scss)

    This is not a CSS file, it’s a SASS file.

    And even if it were, it’s never a good idea to edit a theme, plugin or WordPress core file directly, as you’ll lose your customizations when an update is applied (and you may break something in the process).

    What is the right way to change the fonts size of the slide box title?

    You should put all your CSS customizations in the ADDITIONAL CSS box in your WordPress dashboard:

    APPEARANCE => CUSTOMIZE => ADDITIONAL CSS

    i would like to change the fonts size from the original 23px to 18px

    Kindly try this and let me know how it goes:

    #slb_viewer_wrap .slb_theme_slb_default .slb_data_title {
    font-size: 18px;
    }
    Thread Starter block09

    (@block09)

    George Appiah @gappiah , I was so pleased to hear from you
    this issue bother me a week…………thank you so much.

    i followed your guide and put

    #slb_viewer_wrap .slb_theme_slb_default .slb_data_title {
    font-size: 68px;
    }

    to the box, it doesn’t work.
    and #slb_viewer_wrap .slb_theme_slb_default .slb_data_title those text in red color.

    Do i miss something?

    Ray

    • This reply was modified 4 years, 2 months ago by block09.

    … it doesn’t work.
    and #slb_viewer_wrap .slb_theme_slb_default .slb_data_title those text in red color.

    Do i miss something?

    Indeed, you did. Take a look at the screenshot below. Can you spot the problem?

    There’s a missing closing bracket }. You did not close the .item img bit before adding the code I gave you.

    Thread Starter block09

    (@block09)

    Indeed, you did. Take a look at the screenshot below. Can you spot the problem?

    How stupid am I?

    But unfortunately, it does not change anything….after i fix the error.
    Does the author of plugin set the authorization limit.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Fail to change the font size of plugin title’ is closed to new replies.