BuddyDev

Search

[Resolved] "Report" Button in MediaPress is too big

  • Participant
    Level: Master
    Posts: 496
    Daniel on #19860

    Hi,

    The “Report” Button in Media Press Gallery is too big for View and also inside the Lightbox it is too big.

    Would it be possible to provide the correct CSS code in order to make the button smaller please?

    Many thanks in advance.

    Regards
    Daniel

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #19861

    Hi Daniel,
    We do not include any default css for button and it inherits from theme. That might not look good in some cases.

    Can you please link me to a page where I can see the button and provide you the required css.

    Regards
    Brajesh

  • Participant
    Level: Master
    Posts: 496
    Daniel on #19862
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #19863

    Hi Daniel,
    Thank you.

    The theme has too many unnecessary high priority css causing conflicts. I am seeing issues with other plugins too.

    For this particular case, you can put this

    
    .mpp-item-meta button,
    .mpp-item-meta button:hover {
    
        padding: 0 !important;
        border: 0 !important;
        background: none !important;
        border-radius: 0 !important;
    }
    
    

    For lightbox

    
    div.mpp-activity-meta a {
      font-size: 12px;
      line-height: 1em;
      padding: 8px;
    }
    
    

    Using important is a bad thing but we don’t have much choice here. These should most probably work.

    Also, My suggestion will be to ask your theme developer to support MediaPress instead of providing temporary fixes from here. It is not difficult.

    Regards
    Brajesh

  • Participant
    Level: Master
    Posts: 496
    Daniel on #19864

    Hi Brajesh,

    Thanks for the nice code it works awesomely.

    I will open a ticket and ask the developer to support Media Press.

    Thank you for your time and Happy New Year!!!

    Regards
    Daniel

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #19865

    You are welcome.

    Happy New Year 🙂

    Regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: resolved