[Resolved] Styling List

Home Forums Support [Resolved] Styling List

Home Forums Support Styling List

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #2313931
    Jusung

    Hello.

    On the footer, I made 3 sections.
    On the third section, I wanna apply this code
    list-style-type: none;
    margin: 0;
    font-size: 20px;

    However, I don’t know the name of list.

    Can you help?

    Thank you.

    #2313938
    Jusung

    I found it is just
    ul li{
    }

    but it is not attached to the left like the page list.
    Can you help me to make the list look like page list?

    #2313942
    Jusung

    Google Blog is List
    Blog is page List

    I wanna make “List” look like “page list”

    #2313947
    Fernando
    Customer Support

    Hi Jusung,

    How should the “page list” look like? Do you have an example?

    #2313955
    Jusung

    On the footer and the third section, you can see
    Google Blog -> List
    Blog -> Page List

    The “Blog” is well left-assigned
    while “Google Blog” is not left-assigned.

    I want to make “Blog” left-assigned

    #2313956
    Jusung

    It is like
    …….Google Blog
    Blog
    ——————-

    I want to make
    Google Blog
    Blog

    #2313961
    Fernando
    Customer Support

    How are you specifically are you adding Google Blog?

    #2313962
    Jusung

    It is added by elements. In the elements, on the third section of footer, I added “List” and “Page List”
    I made the footer in the elements.
    These are the code

    /* List */
    ul li {
    list-style-type: none;
    margin:0;
    font-size:20px;
    }

    /* Page List */
    .wp-block-page-list {
    list-style-type: none;
    margin: 0;
    font-size: 20px;
    }

    #2313969
    Fernando
    Customer Support

    I see. You can try this CSS instead:

    .site-footer .gb-container ul {
        margin: 0 0 0 10px;
    }
    
    .site-footer .gb-container ul li {
        list-style-type: none;
        margin: 0;
        font-size: 20px;
    }
    #2313981
    Jusung

    Thank you!
    It works well!

    #2313982
    Fernando
    Customer Support

    You’re welcome Jusung!

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