What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

  • This area is dedicated to the support of our xF1 add-ons. For xF2, please use the dedicated area: HERE.
  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

Support Add a url to page cover & Add cover to a category

vplusasia

New Member
Hello,
I would like to ask how can I add a url to page cover that when people lick on the page cover it open a new page.

And I can not figure out how to add a cover to a category.

Thanks in advance.
 
Last edited:

Fred

Administrator
Staff member
Nop sorry
But you have just to set "Yes" in permission
Capture d’écran 2018-11-15 à 14.00.30.png

And you should have new input in each attachment when you manage cover

Capture d’écran 2018-11-15 à 14.01.31.png

Hope this help you
 

vplusasia

New Member
Thank you very much!
I can add url now.
However, I still can not add cover to category of my forum.
What should I do?
 

vplusasia

New Member
Hello,
Please take a look at my attachement.
I have set permission but still can not see any where to upload cover for only "category"
 

Attachments

  • permission.png
    permission.png
    35.9 KB · Views: 3
  • pm2.png
    pm2.png
    54.1 KB · Views: 2
  • pm3.png
    pm3.png
    63.4 KB · Views: 2

vplusasia

New Member
I would like to ask one more thing: The covers are ok on my computer but on they become small on my mobile.
Is this a bug?
 

Fred

Administrator
Staff member
Nop you can configure it via style properties and options for each type (Forum, Thread....) ;)
 

vplusasia

New Member
On my mobile:
mobile.png


On my computer:
computer.JPG


Coulp you please tell me how can I edit the template for it working well on mobile device?
 

Fred

Administrator
Staff member
You need override css for this
In EXTRA.css template you can paste this

HTML:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveWideWidth) {
    .Responsive .xfa_ec_img {
        background-size: cover !important;
    }
}
/* TABLET */
@media (max-width:@maxResponsiveMediumWidth) {
    .Responsive .xfa_ec_img {
        background-size: cover !important;
    }
}
/* MOBILE */
@media (max-width:@maxResponsiveNarrowWidth) {
    .Responsive .xfa_ec_img {
        background-size: cover !important;
    }
}
</xen:if>

it's should work
 

vplusasia

New Member
I have tried but it does not work.
It seems that the big images become small on mobile device
I will send you the links to my site via pm.
 
Top