• Hi all,

    I seem to be having an issue with a website – but the issue is only visible when the page is open to full width. I have a projects page which loads as a 5 grid wide table. When a single category is selected – a series of links appear overlaid on top of the page. If the page is shrunk to less than full width – the issue is gone.

    Here is a link to the page in question: https://www.bkd.ie/category/commercial/

    Any ideas on what the issue might be?

    The blog I need help with is: https://www.bkd.ie

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I looked at the page you linked to and it looks like the issue is caused by a CSS media query. The media query is set to target screens that are 1200px or wider. When the screen width is less than 1200px, the media query is not triggered and the links do not appear.

    To fix the issue, you can either remove the media query or change the target width to something larger. If you remove the media query, the links will always appear, regardless of the screen width. If you change the target width, the links will only appear on screens that are wider than the specified width.

    Here is the code for the media query:

    @media screen and (min-width: 1200px) {
      .links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: red;
      }
    }
    

    You can remove this code or change the min-width value to something larger.

    I hope this helps!

    Thread Starter pgeoghegan

    (@pgeoghegan)

    Thanks @danitatsan very helpful response.

    Increasing the min-width does remove the links – which is a help. However the them is formatted to show a list of categories spanning the top of the page when opened in a window 1200px wide or greater. If the display window is less than 1200 a mini-menu appears down the left of the page. If I increase the min-width px to greater than 1200 – the category list at the head of the page is no longer visible. Any ideas on how to keep this visible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Links visible all over page but only at full width’ is closed to new replies.