• Resolved purelyfinancial

    (@purelyfinancial)


    While on mobile, my blogs homepage has a pretty big gap between the menu and the posts. This is unintentional. Also, the logo is shifted toward the middle and downwards making the menu itself to large. I want it to look like it does on the desktop, albeit smaller and with the 3 lines to open navigation. Link

    I’ve tried everything and looked over a bunch of other posts with a similar issue but none seem to have the exact same one and none of the solutions worked. How can I fix this?

    • This topic was modified 4 years, 9 months ago by t-p. Reason: Moved to Fixing Wordpress. This is not an Everything else WordPress topic

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Moderator t-p

    (@t-p)

    Mobile compatibility is theme-dependent.

    I recommend asking at https://www.ads-software.com/support/theme/writers so the theme’s developers and support community can help you with this.

    Thread Starter purelyfinancial

    (@purelyfinancial)

    I’ve emailed them multiple times and it seems like that forum is all but inactive. This leads me to believe the theme is no longer being developed. What can I do?

    Moderator t-p

    (@t-p)

    I’ve emailed them multiple times and it seems like that forum is all but inactive

    The theme was last updated about 2 years ago!

    And has only about 1,000 active users!

    This leads me to believe the theme is no longer being developed.

    Likely.

    What can I do?

    You may consider looking for an another theme in the theme directory which is well maintained.

    Thread Starter purelyfinancial

    (@purelyfinancial)

    That’s really unfortunate. No way I can get a refund I’m assuming; I wish I knew that before I bought it. I was aiming to get a theme not a lot of people were using, which is ironic.

    There definitely isn’t some code snippet or something to fix this without changing themes?

    Thanks for your help by the way.

    Moderator t-p

    (@t-p)

    I wish I knew that before I bought it

    The link I give you (https://www.ads-software.com/support/theme/writers ) in my very reply is for the free version of the theme..

    Now you are saying you paid for the theme.

    If you are using paid or commercial version of this theme, then please contact the author directly on their site. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.

    Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.

    As the author is aware, commercial products are not supported in these forums.

    Here are some quick fixes for you. The one I cant help with really is the logo question, because the logo you;ve uploaded has space to the right and left which is why its not sitting flush on the left.

    @media only screen and (max-width: 767px) {
      .site-header {
    	display: none !important;
    }
    
    div#content {
    	margin-top: 30px !important;
    }
    }

    What does the above do?

    The space at the top is caused but site-header that has no content, therefore is not actually doing anything. So ive removed it. Thats what the first bit does.

    The second piece of code adds a margin to the top of the page content area, because when removing the site header, you lose some of the top of the content, so ive adjusted that.

    Paste that code into your child theme’s style.css file, or into a “custom css” area in your theme or plugin if you are using one.

    Hope this helps

    Thread Starter purelyfinancial

    (@purelyfinancial)

    Fantastic! Thank you so much. Worked great

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Mobile Header Issues’ is closed to new replies.