Viewing 6 replies - 16 through 21 (of 21 total)
  • Plugin Author Greg Priday

    (@gpriday)

    Thread Starter Adam Blunt

    (@adamxp12)

    Tried adding that but unfortunately did not solve my problem
    I think i’m going to have to contact the devs of wp-united and see what they say

    Plugin Author Greg Priday

    (@gpriday)

    Let me know what they say. If they have any suggestions for what I could do on my side, I’d be more than happy to make the changes.

    JackChuckun

    (@jackchuckun)

    I have this same issue using version 1.3.9..

    I simply cannot get the bullet points to show when using the Price Box widget (haven’t tried other PB list boxes at this point).. I have tried Firefox, Chrome, and IE, and tried logging out of admin and clearing cache.. Still nothing.

    I looked at the inline CSS produced and it should be working.. I’ve never had such a bizarre thing happen to me with CSS :/

    I also tried disabling inline CSS and still no luck.. Any ideas? >_< I’m on a local machine right now so cannot provide a link just yet!

    EDIT: All other applied styles are working fine, eg the button, header, etc.. Just not the feature list style option.. The inline CSS its self is being generated, and it changes to reflect any changes I make via the widget panel, but visually the feature list doesn’t change at all, and no list style is used at all.. Despite it being defined in the CSS.

    JackChuckun

    (@jackchuckun)

    Update: I will be more than glad to help resolve this issue – but despite my attempts, I cannot figure out where the CSS is actually coming from.. Where’s the handle?

    I’ve tried a str_replace within the origin_widgets_generate_css() function to replace all “;” with ” !important;” to see if perhaps it’s a parent class forcing no list styles but no matter what I do, the CSS does not change to reflect the !important additions..

    So where can I play around with the generated CSS in order to try to help you resolve this issue? As there are a couple of other CSS styles I would like to alter out of personal taste (font size, decoration, style, etc)

    JackChuckun

    (@jackchuckun)

    Ok it was an inherited issue, but the plugin cache was killing me ??

    So I disabled the plugin cache by defining SITEORIGIN_PANELS_NOCACHE, and then added to the /siteorigin-panels/widgets/widgets.php file:

    Find:
    $css = str_replace(';}', '}', $css);
    Add before:
    $css = str_replace(';', ' !important;', $css);

    This marks every single CSS element produced by the plugin as !important, to override any conflicts with the template >_<

    Worked for me but wont always be perfect for those who want their theme to take over the blocks a little.

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘No Styles’ is closed to new replies.