Home Forums WoodMart support forum strange symbols in posts

strange symbols in posts

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #21586

    colorfishgr
    Participant

    i am using the Total Recipe Generator – Visual Composer Addon (https://codecanyon.net/item/total-recipe-generator-visual-composer-addon/19410410)

    when i am using it in normal posts, i have the error you can see in image 1.
    when i am using it in pages type, everything is ok, as you can see in image 2.

    can you help me to fix this problem?

    thank you for your support.

    Attachments:
    You must be logged in to view attached files.
    #21612

    Artem Temos
    Keymaster

    Hello,

    Please, send us a link to the page where we can see the error. We will prepare a fix for you.

    Regards

    #21631

    colorfishgr
    Participant

    i am sending you in Private Content site informations.

    thank you

    #21633

    colorfishgr
    Participant

    except what i told and show you in my first post about the problem, there is a glich and in the some tag texts.

    see in my new images (where is pointing the arrow) in the text “Snack” in the last ‘k’ and in the text “Desert” in the last ‘t’

    thank you again

    Attachments:
    You must be logged in to view attached files.
    #21643

    Bogdan Donovan
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    body .type-post ul {
    	padding-left: 0;
    }
    
    body .type-post ul > li:before {
    	display: none;
    }

    Regards

    #21648

    colorfishgr
    Participant

    thank you for your answer

    i added, it worked in this page, BUT code is brake all other ‘ul’ and ‘li’ lists in EVERY post or page or product…

    i think we need an other fix….

    #21664

    Bogdan Donovan
    Keymaster

    Please, replace previous code snippet with CSS code below. This snippet removes all list style symbols on blog pages. If you need to add some ul lists to post, add “unordered-list” class to ul block;

    body .post-single-page ul {
    	padding-left: 0;
    }
    
    body .post-single-page ul > li:before {
    	display: none;
    }
    
    .unordered-list {
    	padding-left: 20px !important;;
    }
    
    .unordered-list > li:before {
    	display: block !important;;
    }
    

    Regards

Viewing 7 posts - 1 through 7 (of 7 total)