XF 2.0 How to get one picture

Abraham54

Well-known member
My theme has a picture in the Header/logo row and the same picture also in the Navigation row.



What I like to accomplish, is that both the Header/logo row and Navigation row share the same picture, so that the present barrier between the two pictures will be gone and the picture shows as one picture.
 
@Abraham54 well it's not the best way but it done what you need
PUT this CSS in Extra.less
CSS:
.p-body{  background: #f9f9f9; }
.is-sticky,.p-pageWrapper{
  background: url(image_url_here) ;
}
.p-nav ,.p-header{
  background:#00000000 !important;
}
 
Top Bottom