Home › Forums › Jevelin Theme › Portfolio page customization. Preview, Dots & Arrow.
Home › Forums › Jevelin Theme › Portfolio page customization. Preview, Dots & Arrow.
1) what’s the exactly dimension (px x px) of the standard image in the portfolio gallery?
2) Is it possible to change the colour of the dots and the arrow under and aside of the image in the portfolio gallery?
3) How can I reduce the text size on the previw of the portfolio on the home page? (see attachment).
Link site:
http://www.gabrielesecchi.com/
Solution for this topic
Hi @gs762698,
I hope you are well today and thank you for your questions.
1) what’s the exactly dimension (px x px) of the standard image in the portfolio gallery?
It is 660px X 660px
2) Is it possible to change the colour of the dots and the arrow under and aside of the image in the portfolio gallery?
Yes it is possible to change colors of it by developing custom CSS code.
3) How can I reduce the text size on the previw of the portfolio on the home page? (see attachment).
You can change its size by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.sh-portfolio-fancy-item-overlay-container h3 { font-size: 13px; } .sh-portfolio-fancy-item-overlay-categories a { font-size: 10px; }
Best regards,
Shufflehound team
Thank you so much!!
You are really helpful!!!
Just if someone need it, this is the code to change the color of the arrow aside the porfolio image!!
.sh-gallery .slick-prev,
.sh-gallery .slick-next {
color: #fff
}
.sh-gallery .slick-prev:hover,
.sh-gallery .slick-next:hover {
color: rgba(255,255,255,0.4);
background-color: rgba(255,255,255,0) ;
}
You are most welcome here 🙂