Comments mary started the conversationMay 10, 2018 at 12:43pmIt's possible to hide the "X" image in the background, and change it with another image.The image can be different in every single page of the portfolio? 1,974Support repliedMay 10, 2018 at 1:24pmHi Mary,to hide the crossed background lines use.bg-lines { display: none;}in customizer -> additional CSSTo change it I think you have to be familiar with <svg> tag:https://www.w3schools.com/graphics/svg_intro.aspthe background lines are constructed like this:<div class="bg-lines hidden"> <svg> <line x1="20%" y1="100%" x2="80%" y2="0"></line> <line x1="80%" y1="100%" x2="20%" y2="0"></line> </svg></div>in header.php (scroll to the bottom)Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policymary repliedMay 10, 2018 at 4:24pmI understand how to hide the lines, but if I add a <svg> in header.php, the image will show up in every page.Where I can change it page by page?Thanks 1,974Support repliedMay 11, 2018 at 4:45pmThat's a bit more complicated.You can for example which page you are into with is_page functionhttps://developer.wordpress.org/reference/functions/is_page/Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Sign in to reply ...
It's possible to hide the "X" image in the background, and change it with another image.
The image can be different in every single page of the portfolio?
Hi Mary,
to hide the crossed background lines use
.bg-lines {
display: none;
}
in customizer -> additional CSS
To change it I think you have to be familiar with <svg> tag:
https://www.w3schools.com/graphics/svg_intro.asp
the background lines are constructed like this:
<div class="bg-lines hidden">
<svg>
<line x1="20%" y1="100%" x2="80%" y2="0"></line>
<line x1="80%" y1="100%" x2="20%" y2="0"></line>
</svg>
</div>
in header.php (scroll to the bottom)
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
I understand how to hide the lines, but if I add a <svg> in header.php, the image will show up in every page.
Where I can change it page by page?
Thanks
That's a bit more complicated.
You can for example which page you are into with is_page function
https://developer.wordpress.org/reference/functions/is_page/
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy