Comments tomvanluijn started the conversationMay 15, 2020 at 11:52amI would like to change the project name + link to project to the bottom of the page just above the back and forward arrows. How can i change the position of this text?Kind regards,Tom. 3,021Andrew repliedMay 15, 2020 at 1:33pmHi Tom,Use the following custom css in Salient > General settngs > CSS/Script related: .nectar_fullscreen_zoom_recent_projects .project-slide .project-info{ top:70%; } Kind regards.tomvanluijn repliedMay 15, 2020 at 1:39pmAwesome thanks. Is there a way to make a difference for mobile/desktop? 3,021Andrew repliedMay 15, 2020 at 1:43pmHi Tom,The first is form mobile. Second desktop: /*Mobile*/ @media only screen and (max-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info{ top:40%; } } /*Desktop*/ @media only screen and (min-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info{ top:70%; } } Thanks.1 Liketomvanluijn repliedMay 15, 2020 at 1:47pmGreat, works as a charme. Can i make the text size smaller without changing all the H1's ? 3,021Andrew repliedMay 15, 2020 at 1:53pmHi Tom,Try the following: @media only screen and (min-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span { font-size: 40px; } } Thanks.1 Liketomvanluijn repliedMay 20, 2020 at 6:31amIt seems that the spacing between the project namen and "view project" also gets bigger. Can i make the space smaller?I'm using the following css:/*Mobile*/@media only screen and (max-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info{ top:68%;}}/*Desktop*/@media only screen and (min-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info{ top:75%;}}/*text size landing Desktop*/@media only screen and (min-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span { font-size: 60px;}}/*text size landing Desktop*/@media only screen and (max-width: 768px){ .nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span { font-size: 40px;}} 3,021Andrew repliedMay 20, 2020 at 8:24amHi Tom,Try the following css: .project-slide .project-info .container a { margin-top: 0; } Kind regards. Sign in to reply ...
I would like to change the project name + link to project to the bottom of the page just above the back and forward arrows.
How can i change the position of this text?
Kind regards,
Tom.
Hi Tom,
Use the following custom css in Salient > General settngs > CSS/Script related:
Kind regards.
Awesome thanks. Is there a way to make a difference for mobile/desktop?
Hi Tom,
The first is form mobile. Second desktop:
Thanks.
Great, works as a charme. Can i make the text size smaller without changing all the H1's ?
Hi Tom,
Try the following:
Thanks.
It seems that the spacing between the project namen and "view project" also gets bigger. Can i make the space smaller?
I'm using the following css:
/*Mobile*/
@media only screen and (max-width: 768px){
.nectar_fullscreen_zoom_recent_projects .project-slide .project-info{
top:68%;
}
}
/*Desktop*/
@media only screen and (min-width: 768px){
.nectar_fullscreen_zoom_recent_projects .project-slide .project-info{
top:75%;
}
}
/*text size landing Desktop*/
@media only screen and (min-width: 768px){
.nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span {
font-size: 60px;
}
}
/*text size landing Desktop*/
@media only screen and (max-width: 768px){
.nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span {
font-size: 40px;
}
}
Hi Tom,
Try the following css:
Kind regards.