• Hi,

    I changed the width of my website and for some reason when you scroll down the page the Home button from the navigation bar sticks to the top of the screen.

    here is a link to the site:

    http://www.olivecreations.co.uk

    Also I was wondering if somebody could let me know why on certain pages, the whole body is stuck to the left of the screen (for example in jewelery – rings page). I think it has something to do with the layout of the page as only the pages with the tags sidebar on the left are sticking to the left.

    Any help would be much appreciated.

    Thanks

Viewing 1 replies (of 1 total)
  • Hey there willemorley,

    How are you doing today?

    I’m not being able to locate your theme here which probably means that you’re using a premium theme. Unfortunately WordPress forum rules prevents us assisting with commercial products. You can read more here:

    http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products

    I did take a quick peek and you can fix both of these issues with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:

    http://ww.wp.xz.cn/plugins/simple-custom-css

    ul.nav li {
    position: relative !important;
    }
    
    body {
    margin: 1em auto !important;
    padding: 0 !important;
    }

    This should fix the issue with the home button and with pages not being centered. Normally I wouldn’t suggest the use of the !important declaration. However, it can sometimes be a necessary evil when over-writing existing styles. You can find more info on the use of important declaration here:

    https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#The_!important_exception

    If you need any further help, you would need to contact the original developer.

    Have a great day!

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)

The topic ‘[Theme: Mystile] Floating Home Button?’ is closed to new replies.