Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1234396

    Hi. I have been trying to style the masonry captions title and every bit of code I have found has not worked sadly. I have put the web page in the Private Content. When you hover over an image the title caption pops up at the bottom. I would like the background to be black, the text to be white and smaller, the padding to be a specific px , and I would like to remove that little green diamond in the middle. If you point me to the correct code I can then experiment with sizes etc. Thank you so much. I have been tearing my hair out!

    #1234743

    Hey Kate,

    Please try the following in Quick CSS under Enfold->General Styling:

    .av-inner-masonry-content-pos-content .avia-arrow {
      display: none;
    }
    
    .av-masonry-container .portfolio .av-inner-masonry-content {
      background: #000 !important;
    }
    
    .av-masonry-entry-title .entry-title {
      color: #fff;
    }

    Best regards,
    Rikard

    #1234769

    Thank you that has solved half the issues. This has changed the background colour and removed the arrow but the the font is still not working. Its not changed size and its the wrong colour. Please can you let me know what more I need to do. Thanks

    #1234771

    Ps: please may I also have the code to address the padding in this area.

    #1235262

    Hi,

    Please try this instead:

    .av-inner-masonry-content-pos-content .avia-arrow {
      display: none;
    }
    
    .av-masonry-container .portfolio .av-inner-masonry-content {
      background: #000 !important;
    }
    
    .av-masonry-entry-title.entry-title {
      color: #fff !important;
    }
    
    figcaption.av-inner-masonry-content {
      padding: 40px;
    }

    Best regards,
    Rikard

    #1235642

    Thanks Rikard. I added that code and added a field to change the font size but neither the padding or the font size update. The rest have changed (font colour and background colour). This is the code I used:

    /*masonry titles:*/
    .av-inner-masonry-content-pos-content .avia-arrow {display: none; }
    .av-masonry-container .portfolio .av-inner-masonry-content { background: #000000 !important; }
    .av-masonry-entry-title.entry-title { font-size: 10px !important; color: #fff !important; }
    .figcaption.av-inner-masonry-content { padding: 30px !important; }

    This is in the style.css file. Please can you help….

    #1235664

    these selectors are correct – but even if you set the rules to !important – there might be another rule concerning to these elements with a higher specifity.
    You can see here a specifity calculator that gives you a feeling which selector wins the run! ;) Link
    ID’s got a higher weight on specifity than classes than pseudo-classes – so maybe you try:

    #top .av-masonry-entry-title.entry-title { 
    font-size: 10px !important; 
    color: #fff !important; 
    }
    #top .figcaption.av-inner-masonry-content { 
    padding: 30px !important; 
    }

    better advice only possible if i can see the real site

    #1235962

    I am afraid I cant share the site publican yet so this will need to be addressed by a moderator who can see the private info. And thank you for your advice but sadly it did not work. Thanks

    #1236574

    Hi,

    Thank you for the update.

    The Enfold > Performance > File Compression settings are currently enabled, so you may need to disable it temporarily in order to see the changes.

    To adjust the font style of the masonry title, try to use this css code.

    #top #wrap_all .av-masonry-entry-title.entry-title {
        font-size: 10px;
        color: #fff !important;
    }
    

    Please make sure to remove all cache from browser or plugins before testing the page.

    Best regards,
    Ismael

    #1236627

    Super – thanks – that worked.

    #1236771

    Hi,

    Did you need additional help with this topic or shall we close?

    Best regards,
    Jordan Shannon

    #1236923

    Hi. Thanks for your help. the padding is still not working however I am now going to see if its a cacheing issue – I think lets close this thread. Thanks.

    #1237256

    Hi,

    Thanks for the update. We’ll keep this thread open in case you should need any further help on the topic.

    Best regards,
    Rikard

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