1. Alveraz

    Alveraz New Member

    Joined:
    Jun 25, 2023
    Messages:
    10
    Likes Received:
    7
    Location:
    Washington

    Question Forum margins?

    Discussion in 'Support & Feedback' started by Alveraz, Jun 26, 2023.

    I did search for this answer. Sorry if I missed it. The website stretches full screen, so I have to read mile-long posts. Any way of condensing it into a readable size across my desktop or laptop (like most other forums)?

    Thanks! Terrific forum, btw. :)
     
  2. Naomasa298

    Naomasa298 HP: 10/190 Status: Confused Contributor

    Joined:
    Sep 9, 2019
    Messages:
    6,430
    Likes Received:
    7,392
    Location:
    The White Rose county, UK
    Make the window smaller?
     
  3. Alveraz

    Alveraz New Member

    Joined:
    Jun 25, 2023
    Messages:
    10
    Likes Received:
    7
    Location:
    Washington
    Yeah, I figured I could always do that. I was hoping to avoid the extra hassle every time. Oh well.
     
  4. big soft moose

    big soft moose An Admoostrator Admin Staff Supporter Contributor Community Volunteer

    Joined:
    Aug 1, 2016
    Messages:
    23,319
    Likes Received:
    26,827
    Location:
    East devon/somerset border
    there's no in forum way of doing it as far as i know... this one of many things that differentiate XF1 which we run on from the more up to date XF2

    in most browsers you should be able to set a default window size though so you don't have to do it manually every time
     
  5. ps102

    ps102 PureSnows102 Contributor Contest Winner 2024 Contest Winner 2023

    Joined:
    May 25, 2022
    Messages:
    1,546
    Likes Received:
    3,511
    Location:
    Crete, Greece
    You can actually do it on your end without the admins modifying the site. The site is styled with CSS, so all you have to do is customize it with a browser extension like Nighteye. Nighteye's main purpose is to give a dark look to any site, but it also has a "custom CSS" function that you can write code in. That way, you can modify how the site looks on your end.

    The code itself is not hard to write. The site has a div container called pageWidth, and luckily for us, the actual content is inside an outer div container, so reducing the width and then centering the container is an easy task.

    This is all it takes:
    Code:
    .pageWidth {
      width:1000px;
      margin: 0 auto;
    }
    
    #QuickSearch {
      right:0px;
      top:-97px;
    }
    
    With this code, you get this:
    [​IMG]

    It looks alright. But it isn't perfect, the main page is a bit weird:
    [​IMG]

    Look at the counters. And also the search bar. You will have noticed that I moved it to the very top. Unfortunately, whoever wrote the CSS and HTML for it did so with a fixed position, so it doesn't scale very well and sometimes covers some controls if the page width is set to very low. Same goes with the counters. They're also fixed rather than dynamic. I could disable them entirely if you want.

    It's not perfect and I don't prefer this method. Instead, I actually use the zoom function, which is built into the browser, takes zero downloads, and in my opinion, makes the site look pretty good. For my screen, a zoom of 170% works.

    [​IMG]

    If you use the first method and something doesn't look alright, I'll look into it.
     
    Not the Territory and Alveraz like this.
  6. Xoic

    Xoic Prognosticator of Arcana Ridiculosum Contributor Blogerator

    Joined:
    Dec 24, 2019
    Messages:
    13,365
    Likes Received:
    14,638
    Location:
    Way, way out there
    Hey, who's that handsome hunk of a man?
     
    ps102 likes this.
  7. ps102

    ps102 PureSnows102 Contributor Contest Winner 2024 Contest Winner 2023

    Joined:
    May 25, 2022
    Messages:
    1,546
    Likes Received:
    3,511
    Location:
    Crete, Greece
    You mean Not the Territory?

    Kidding, kidding...
     
    Not the Territory and Xoic like this.
  8. Xoic

    Xoic Prognosticator of Arcana Ridiculosum Contributor Blogerator

    Joined:
    Dec 24, 2019
    Messages:
    13,365
    Likes Received:
    14,638
    Location:
    Way, way out there
    I said man, not map... o_O :p
     
    Not the Territory and ps102 like this.
  9. Alveraz

    Alveraz New Member

    Joined:
    Jun 25, 2023
    Messages:
    10
    Likes Received:
    7
    Location:
    Washington
    Thanks so much, everyone! ps102, I'll give it a shot, thanks!
     
    ps102 likes this.
  10. Not the Territory

    Not the Territory Contributor Contributor Contest Winner 2023

    Joined:
    Nov 8, 2019
    Messages:
    1,405
    Likes Received:
    1,922
    Maps have vanity feelings too :(.
     
    Xoic and ps102 like this.
  11. Xoic

    Xoic Prognosticator of Arcana Ridiculosum Contributor Blogerator

    Joined:
    Dec 24, 2019
    Messages:
    13,365
    Likes Received:
    14,638
    Location:
    Way, way out there
    I know there's a magnificent man behind the map.
     
    ps102 likes this.

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice