extra

  1. ENXF NET

    XF 1 Tip [Guide] Remove ThemeHouse Branding

    Annoyed about that ThemeHouse branding at the bottom that won't go away and you can't figure out a way to delete the branding text from the XenForo files? Well here's how to do it in a slightly different way. Step 1. Go to your admin panel and log in. Step 2. Navigate to your EXTRA.css files...
  2. ENXF NET

    XF 1 Tip Individual node CSS attributes

    Steps Decide which node to modify: locate its ID in ACP > Applications > Node Tree > {desired category}, check URL for the ID, see below: In this example it's 47. Open EXTRA.css in ACP > Appearance > Templates > {desired style} > EXTRA.css Insert the following code: .nodeList .node_47...
  3. ENXF NET

    XF 1 Tip Creating custom user group banner CSS

    These instructions will explain how to create your own custom CSS for user banners. Give the banner a title: Choose a class name for your custom class, in this example we are using my-style. Add it to the custom CSS field for the user group, like so: If you want the banners to wrap around...
  4. ENXF NET

    XF 1 Tip Creating custom thread prefix CSS

    This resource is not affiliated with XenForo Ltd. I'm sure lots of people will want to create their own thread prefix CSS, so this thread will help you do that. The following code should be added to EXTRA.css In the example below we're going to create two classes; CTA1 and CTA2. Of course you...
  5. ENXF NET

    XF 1 Tip Tutorial Add extra fields to any content using separate table

    Let's consider the wiki addon. Its articles and comments are extended posts in some pre defined node. So there is a following problem: we need to generate prepared version of post with added table of contents and autolinking since onfly processing of that would kill performance. We need extra...
  6. ENXF NET

    XF 1 Tip Moving xenForo SideBar from Right to Left

    Just add the following CSS to EXTRA.css Admin Control Panel -> Appearance -> Styles & Templates -> Templates ( make you it's the correct style ) -> EXTRA.css Add the contents below and save : .mainContainer { float: right; margin-left: -{xen:calc '@sidebar.width + 10'}px; margin-right: 0px...
Top