XF 2.0 adding pagelink in extra.less

nivekae

Member
Hello,

I'm trying to add a page link for a node background image in extra.less tried everything I know but cannot get it to work, could someone help with this?...Here is the code below that I want to add a url to make the background clickable....

.background--id25 {
background: url('/styles/xxxxxx/img/xxxxxx.jpg') no-repeat;
height:150px;
background-size: cover !important;
background-position: 100% 100% !important;
}

thanks
 
CSS:
.block.block--category.block--category1 .block-header {
    background: url('/styles/xxxxxx/img/xxxxxx.jpg') no-repeat;
    background-size: cover !important;
    background-position: 100% 100% !important;
}

Note: category1 categoryID use.
 
Back
Top Bottom