[Resolved] Adding Icon in sidebar Widget

Home Forums Support [Resolved] Adding Icon in sidebar Widget

Home Forums Support Adding Icon in sidebar Widget

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #1874777
    David
    Staff
    Customer Support

    The shadow comes from this CSS:

    article.post::before, article.post::after {
        content: '';
        top: 19px;
        height: 15px;
        position: absolute;
        z-index: -1;
        background: transparent;
        width: 50%;
        box-shadow: -4px -4px 15px 1px rgba(202,207,214,0.75);
    }

    So it applies to any before element on an an article
    So now you need MORE CSS to remove that style from the widget:

    .widget article.post::before, .widget article.post:after {
        box-shadow: none;
    }

    For the icon alignment you will need more CSS to adjust it for the Menu list:

    .sidebar .widget.widget_nav_menu ul li::before {
        top: 5px !important;
    }

    I really don’t like having these conversations with you as we want to help all our users achieve their requirements, but as usual these requests are all Custom development, and they seem to be a lot of customization requests on top of existing customization requests. Which in turn means more time spent by us ( and you ) trying to make things work.

    I would recommend that you pin down your design first and then ask for help, as constant changes is just a waste of our time and yours. You may also want to consider you have raised almost 400 replies in 8 months in this forum. The time you must spend here may be better served taking a course in CSS.

    #1874814
    Sourabh

    You have raised almost 400 replies in 8 months in this forum.

    Is this a concern ???

    The total ticket number is around 93 (includes 359 replies), most of them are just one-liner communication, most of them I have raised for my clients (not for personal).

    Yes, it’s frustrating for me as well, write a line and then wait longer for a reply or sometimes a whole day wait to get one line revert.

    We stopping this topic here.

    It doesn’t look good for the GP team showing frustration in the support forum.

    #1876189
    Sourabh

    I am closing this ticket now.

    #1876397
    Leo
    Staff
    Customer Support

    #1873833: There isn’t a screencast there:
    https://generatepress.com/forums/topic/adding-icon-in-sidebar-widget/#post-1873833

    #1874457: Linked removed.

    I’ll close the topic.

Viewing 4 posts - 16 through 19 (of 19 total)
  • The topic ‘Adding Icon in sidebar Widget’ is closed to new replies.