xenforo 1

  1. ENXF NET

    xF1 Add-on Borde 1.5

    Description: Add a border to any attached image in a post. (Example of Image without a border) (Example of Image after border has been added) (Example of Options page) (Example of Group Permissions) Requirements: Must have ImageMagick PECL Extension installed on your server. Check if...
  2. ENXF NET

    XF 1 Tip Membercard styling guide

    Summary: I thought I'd submit a membercard styling guide for those having trouble styling the text colours in the membercard. Think of this as a base guide, you can see in the screenshot what elements are using what colour by referencing the css provided below making it a little easier for you...
  3. ENXF NET

    XF 1 Tip Profile Posts customized look

    Add to EXTRA.css: /* START - Profile Posts customized look */ .messageSimple { padding: 10px !important; border: 1px solid #e8e8e8; border-radius: 4px; box-shadow: 2px 2px 3px rgba(0,0,0, 0.1); } /* END - Profile Posts customized look */ Result:
  4. ENXF NET

    XF 1 Tip Replace Overlay close button with FA icon

    In EXTRA.css template add: /* FA icon for Overlay Close button */ .xenOverlay a.close:after { content: "\f00d"; font-family: FontAwesome; font-size: 14pt; padding-left: 12px; } .xenOverlay a.close { background-image: none !important; } /******/ Font Awesome needs to be called via CDN...
  5. ENXF NET

    XF 1 Tip Thread prefix with Font Awesome icons

    Font Awesome needs to be called via CDN or locally to work right. Here's an example for GUIDE prefix: First create a thread prefix in ACP: Now add this code to your EXTRA.css template: .titleBar .prefix.prefixGuide { font-size: 14pt; } .prefixGuide:before { content: "\f1cd"...
Top