Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #309137

    This bug has been driving us crazy for several versions. We’ve tried the Quick CSS workaround and it’s worked before, but now this new page still displays non-white bullets even though the bulleted text is white (on colored background).

    Bad page: http://www.ciphercloud.com/tweet-chat-boxworks14/

    Good page: http://www.ciphercloud.com/products/ciphercloud-cloud-discovery/

    Here’s the quick CSS we’re using :
    .page-id-6568 .entry-content-wrapper li:before { content: ‘• ‘!important; color: white!important; float: left!important; margin-right: 10px!important; }
    .page-id-6568 .entry-content-wrapper li { text-indent: -15px!important; }
    .page-id-6568 .entry-content-wrapper ul { list-style: none !important; }

    #309168

    Hey!

    The code you posted should work when applied – http://screencast.com/t/BYzSArHZOIZi

    Have you tried purging your caching/minification plugin?

    Cheers!
    Josue

    #309506

    Thank you – yes now it’s white. But I also need to remove the 2nd line indentation – i.e., the 1st and 2nd lines of text should be equally indented from the bullet. Currently the 2nd line looks to be indented +5 or more pixels.

    #309536

    Hi!

    Replace the text-indent:

    .page-id-6568 .entry-content-wrapper li { text-indent: -15px!important; }
    

    For margin-left:

    .page-id-6568 .entry-content-wrapper li { margin-left: -15px!important;  }
    

    Best regards,
    Josue

    #309556

    I’m confused – sorry. It’s not clear if I’m replacing something, or adding 2 new lines. Please provide the final code I need to insert – this is what I had:

    .page-id-6568 .entry-content-wrapper li:before { content: ‘• ‘!important; color: white!important; float: left!important; margin-right: 10px!important; }
    .page-id-6568 .entry-content-wrapper li { text-indent: -15px!important; }
    .page-id-6568 .entry-content-wrapper ul { list-style: none !important; }

    #309563

    Hi!

    This should be the final code:

    .page-id-6568 .entry-content-wrapper li:before { content: ‘• ‘!important; color: white!important; float: left!important; margin-right: 10px!important; }
    .page-id-6568 .entry-content-wrapper li { margin-left: -15px!important; }
    .page-id-6568 .entry-content-wrapper ul { list-style: none !important; }

    Regards,
    Josue

    #309565

    Tried this and the 2nd bullet is still not aligning correctly.

    #309572

    Hey!

    The code is still using text-indent:
    http://screencast.com/t/WEQhuyq83RQ

    Remember to purge your caching plugins after changing something.

    Cheers!
    Josue

    #309575

    Hello-
    I did purge the caching plugins and cleared browser cache.
    Sorry, but I don’t understand your statement “The code is still using text-indent:” What do you mean?

    I want the bulleted text to look like:

    * sldjfalksdjfkladjf
    fadfadsfasdfdsaf

    NOT like this:
    * sldjfalksdjfkladjf
    fadfadsfasdfdsaf

    #309576

    Hi,

    I’m referring to the text-indent CSS property (see screenshot). Can you please create me an administrator account? post it here as a private reply.

    Regards,
    Josue

    #309578
    This reply has been marked as private.
    #309580

    Hey!

    You just need to look for this in the code:

    text-indent: -15px!important;
    

    Simply change it to:

    margin-left: -15px!important;
    

    Best regards,
    Josue

    #309584
    This reply has been marked as private.
    #309585

    Hi!

    Change the ones that have “-15px” as value.

    Cheers!
    Josue

    #309602
    This reply has been marked as private.
    #309605

    Ok, discard that plan. Add this at the start of Quick CSS instead:

    .page-id-6568 .entry-content-wrapper li { 
        text-indent: 0 !important; 
        margin-left: -15px !important;
    }

    Regards,
    Josue

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