Okay
  Public Ticket #2459490
portfolio
Closed

Comments

  •  3
    camilla falsini started the conversation

    Hi,

    I can't find how to solve some little different things but on the same subject.. I don't know if I have to open different tickets.. in that case just let me know.

    Here they are:

    -how can I make the portfolio caption to be center aligned instead of left? 

    -and is it possible to remove the "View Larger" button, leaving only the "More deatils" one? Also because the first one is useless and takes to anything, in my case.

    The last one: the button are all white: where I can change the color of the font "More details" making it black?

    Really thank you,

    Camilla


  •  2,979
    Andrew replied

    Hi Camilla,

    -Use the following css in Salient > General settings > CSS/Script related to align center captions:

    .portfolio-items .col.span_3 .work-meta h4 {
        text-align: center;
    }
    

    - Try the following css:

    .portfolio-items[data-ps="1"] .col .work-item:hover .vert-center a:first-child {
        display: none;
    }
    

    - Use the following custom css:

    .portfolio-items[data-ps="1"] .col .work-item:hover .vert-center a {
        color: black !important;
    }
    

    Hope this helps.

  •  3
    camilla falsini replied

    Hi Andrew,

    it worked perfectly for the black text and for removing the "View larger" button. Thanks!

    For the alignment, it worked, but the strange thing is that now text has a centered alignment on itself, but it is not aligned to the thumbnails! :))) See the screenshot.

    Best,

    Camilla

  •  2,979
    Andrew replied

    Hi Camilla,

    Replace with the following:

    .portfolio-items .work-meta {
        text-align: center;
        width: 100% !important;
    }
    

    Kind regards.

  •  3
    camilla falsini replied

    PERFECT!

    Thanks

  •  3
    camilla falsini replied

    Changing the button text "More details" into another one, like SEE MORE (with uppercase), is too difficult? I am reading old tickets about it, and downloaded the plug in "SAy what" to change strings but it didn't work..  

  •  3
    camilla falsini replied

    Also I am getting mad to make the text and the button bigger! Is there a way? Or to keep the captions below thumbs (as with the Project Style "Meta below thumbs with links on hover", that I love) but having an entire thumbs link? 

    Thank you again and sorry for all these questions!


  •  2,979
    Andrew replied

    Hi Camilla,

    Adjust as follows

    Thanks.

  •  3
    camilla falsini replied

    I don't see nothing :)))

  •  2,979
    Andrew replied

    Hi Camilla,

    Check the screenshotsmile.png

    4053652375.png

    Thanks.

  •  3
    camilla falsini replied

    It worked!

    Making it bigger is impossible, right?

    thanks!

  •  2,979
    Andrew replied

    Hi Camilla,

    The following can increase font size:

    .portfolio-items[data-ps="1"] .col .work-item:hover .vert-center a {
        font-size: 22px;
    }
    


    Thanks.

  •  3
    camilla falsini replied

    Thank you Andrew!