• Hello,

    After updating the Evolve theme, I noticed that:
    * if I create a blog post with lists, only a bloc of text appears (no bullets)
    * the lines below the menu and in-between posts don’t show anymore

    Thanks for your help!

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello,

    you can add bullets to the lists with Additional CSS:

    .post-content ul {
        list-style-type: bullet;
    }

    the lines below the menu and in-between posts don’t show anymore

    not sure what you mean. any screenshot please?

    Thread Starter winebotany

    (@winebotany)

    Thank you for your reply! Actually for some reasons the CSS you wrote above unfortunately doesn’t change anything.

    As for the border, there was a red line just below the menu (home drinks green …), and lines separating each blog post, too, but they don’t appear anymore.

    Thank you!

    sorry, gave a wrong type (typed too fast ?? ), change to this:

    .post-content ul {
        list-style-type: disc;
    }

    As for the border, there was a red line just below the menu (home drinks green …), and lines separating each blog post, too, but they don’t appear anymore.

    was this custom made? I don’t remember those ??

    Thread Starter winebotany

    (@winebotany)

    Wonderful! Bullets work like a charm, now, thank you ??

    For the bottom border, it was something like that:

    #wrapper .primary-menu .link-effect a {
    border-bottom: 2px solid #990000;
    }

    Cheers

    Do you mean separator of submenu items?? That code refers to it ??

    Thread Starter winebotany

    (@winebotany)

    Mhh… actually there were

    * a thin line that went all the way under the menus tabs (HOME, DRINKS, etc), but now there is a thick grey rectangle (https://www.winebotany.com)

    * a thin line between each blog post, but it doesn’t appear anymore.

    Thanks!

    Thread Starter winebotany

    (@winebotany)

    NB: the CSS code I have is

    .primary-menu {
    width: 985px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    }

    #wrapper .primary-menu .link-effect a {
    border-bottom: 2px solid #990000;
    }

    .content {
    padding-top: 0;
    }

    The thick line appears because you have enabled the Front Page Content Boxes.

    to separate blog posts try Additional CSS:

    article {
        border-bottom: 1px solid #aaa;
    }
    Thread Starter winebotany

    (@winebotany)

    Many thanks! The line between articles works well. So weird the red bottom border line below the main menu disappeared though…

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘[evolve]’ is closed to new replies.