float

  1. ENXF NET

    XF 1 Tip HTML for Paris Flag in Header

    The below code will display a flag of France in the top right block of your header. Open the ad_header template in the style(s) you are using and paste the following code. The CSS is included in the code so you can customize to suite your needs (ie: remove the box shadow for dark themes)...
  2. ENXF NET

    XF 1 Tip Category description on hover

    Add to EXTRA.css: /* START - Category description on hover */ .nodeList .categoryStrip .nodeTitle a { float: left; } .nodeList .categoryStrip .nodeDescription { display: none; } .nodeList .categoryStrip:hover .nodeDescription, .node:hover .nodeDescription { display: block; float...
  3. ENXF NET

    XF 1 Tip Thread Info add-on customization

    Requirements for this customizations: [SSD] Thread Info With code below you'll change this look: ... to that: Add code below to EXTRA.css template: /*** Thread Info Add-on customization ***/ .ssd_threadinfo2 { border: 0 !important; padding: 0 !important; background: none !important...
  4. ENXF NET

    XF 1 Tip [cXF] Change Navigation Tabs side

    Instead of this: ... have this: Add code to EXTRA.css template: .navTabs .publicTabs { float: right !important; } .navTabs .visitorTabs { float: left !important; }
  5. 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