I have a few questions, I am trying to have my portfolio how 2 columns on mobile and 6 on desktop. My other issue is when I go to share a portfolio item it is not pulling in the featured image to share.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (min-width: 1000px) {
body .portfolio-items .col.elastic-portfolio-item.tall, body .portfolio-items .col.elastic-portfolio-item.regular {
width: 16.66% !important;
}
}
@media only screen and (max-width: 690px) {
.portfolio-items:not(.carousel) .col.span_6 {
width: 49.9% !important;
}
body .portfolio-items[data-gutter="2px"] .col {
padding: 1%;
}
}
I have a few questions, I am trying to have my portfolio how 2 columns on mobile and 6 on desktop. My other issue is when I go to share a portfolio item it is not pulling in the featured image to share.
Hey Scott,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team