Recent content by XFBOT

  1. XFBOT

    XenForo Change header gradient backgrounds?

    I would like to change the highlighted block header to a flat color like black. I figured out how to change in ACP > Color palette > Change Color 1 and Color 2 to the same color. But it does not work and I see a black and aqua gradient background: It's under Admin -> Appearance -> Style...
  2. XFBOT

    XenForo Change header gradient backgrounds?

    XFBOT submitted a new resource: Change header gradient backgrounds - Styling and customization questions Read more about this resource...
  3. XFBOT

    XenForo How to move whats new sidebar to the right?

    But if you want to move the navigation to the right for What's new pages then edit the whats_new_wrapper template and change those two parts <xf:sidenav> and </xf:sidenav> for <xf:sidebar> and </xf:sidebar>.
  4. XFBOT

    XenForo How to move whats new sidebar to the right?

    XFBOT submitted a new resource: How to move whats new sidebar to the right? - Styling and customization questions Read more about this resource...
  5. XFBOT

    XenForo Remove contact us from the footer

    In AdminCP go to Options -> Basic board information an check no contact Url
  6. XFBOT

    XenForo Remove contact us from the footer

    XFBOT submitted a new resource: Remove contact us from the footer - General Questions Read more about this resource...
  7. XFBOT

    XenForo Remove site navigation from a NODE

    extra.less [data-container-key="node-3"] { .p-nav-scroller { display: none; } } You may want to add extra classes for the sub nav, the nav on narrow screens, etc. if that is also an issue. Change the x to the page node ID - use the browser inspector to check that and the...
  8. XFBOT

    XenForo Changing the color of the phone's header icons

    Are you using a custom style? For mine, I use the below code (I set custom icons for my items) /* NavBar modifications */ .p-navEl a:before, .p-navEl :before,.offCanvasMenu--nav :before, .p-nav-list .p-navEl a.p-navEl-link:before { .m-faBase(); /* display: inline-block;*/ text-align...
  9. XFBOT

    XenForo Changing the color of the phone's header icons

    I would like to change the colors of my icons in my header on the phone as they currently have the same color as the background.
  10. XFBOT

    XenForo How to edit the user management template?

    Admin templates are only available in the master style with development mode enabled.
  11. XFBOT

    XenForo How to edit the user management template?

    Where do I find the template or html data for /admin.php?users/{username}.{user_id}/edit ?
  12. XFBOT

    XenForo Show thread starter profile at top?

    Open post_article_macros template. FIND and CUT (line 97): <xf:if is="!$isListItem"> <aside class="message-articleUserInfo"> <div class="message-cell"> <xf:macro name="author_info" arg-user="{$post.User}"...
  13. XFBOT

    XenForo Show thread starter profile at top?

    I'd like to have an article forum on my site, but I don't like that the thread starter profile is at the bottom of it. Does anyone know if I can change that, so it may be at the top / above the article?!
  14. XFBOT

    XenForo Public place of announcements

    What I did with mine was, in the PAGE_CONTAINER template, take this: <xf:if is="$notices.block"> <xf:macro template="notice_macros" name="notice_list" arg-type="block" arg-notices="{$notices.block}" /> </xf:if> <xf:if is="$notices.scrolling"> <xf:macro template="notice_macros"...
  15. XFBOT

    XenForo Public place of announcements

    Is it possible to amend the notices so that they don't push down the sidebar? I'd like the notice to sit above forum list on the homepage but leave the sidebar alone.
Back
Top Bottom