• Resolved BBerries

    (@bberries)


    Hi there,

    I’m a WordPress idiot so need a bit of help from you smart folk!

    I’m using the comicpress theme and have just installed Jetpack.

    Jetpack is supposed to match the colour of your header and background text on the mobile site with the colour of your desktop site but this hasn’t happened. My desktop site is black and the Mobile site is white.

    Was told the best way to solve this was to enter the FTP file and do the following:

    “locate the CSS file which can be found in this folder:

    public_html/wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven

    Style.css is what you need to edit, on line 64 you will find:

    64
    65
    66
    body {
    background: #fff;
    }
    Change that #fff (White) to whatever colour you want, it can be a hex value or a named colour like RED.”

    I’ve followed these steps but nothing has changed.

    Does anybody have any other ideas?

    My site is: bitterberries.com If that’s of any use.

    Thanks

    The blog I need help with is https://www.bitterberries.com.

    https://www.ads-software.com/plugins/jetpack/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    Was told the best way to solve this was to enter the FTP file and do the following:
    “locate the CSS file which can be found in this folder:
    public_html/wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven

    I would recommend against editing plugin files, as your changes will then be overwritten next time you update the plugin. Instead, you’ll want to add that CSS into your Custom CSS editor under Appearance > Edit CSS in your dashboard.
    There, you’ll also see the “Mobile compatible” option on the right, that will ensure that your custom CSS is added to the mobile theme as well.

    Looking at your site on my mobile, it seems that the overall background is set to black already.

    If you’d like the text background to be black as well, you’ll need to change the color of the text to white so things remain readable. Here is the code I would add to your custom CSS editor to make the mobile theme look similar to the desktop theme:

    .mobile-theme #page,
    .mobile-theme #branding,
    .mobile-theme #colophon {
    	background: #0a0a0a;
    }
    
    .mobile-theme #page #post-1 .entry-title {
    	display: none;
    }
    
    .mobile-theme a,
    .mobile-theme #site-generator a,
    .mobile-theme .commentlist .edit-link a:before,
    .mobile-theme .entry-meta .comments-link a:before,
    .mobile-theme .entry-meta .edit-link a:before,
    .mobile-theme a.comment-reply-link:before,
    .entry-meta .edit-link a,
    .commentlist .edit-link a,
    .entry-meta .comments-link a,
    a.comment-reply-link {
    	color: #fff;
    }
    Thread Starter BBerries

    (@bberries)

    Thanks for your help Jeremy.

    Worked a charm!

    Don’t suppose you know how I can make the font size larger on my custom menu (for the desktop version)?

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    Don’t suppose you know how I can make the font size larger on my custom menu (for the desktop version)?

    Something like his should do the trick:

    .menu ul li a {
    	font-size: 22px;
    }

    If you’re not familiar with CSS, I’d recommend this series of tutorials, it’s a good place to start:
    https://dailypost.wordpress.com/2013/06/21/css-intro/

    Thread Starter BBerries

    (@bberries)

    Thanks Jeremy that worked for me. Guide was useful too.

    I’m now having a bit of trouble finding the right place in my css to increase the size of the “prev” and “next” navigation text links at the top of my page.

    Any ideas?

    My website: https://www.bitterberries.com/

    Thank you

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    Something like this should do the trick:

    .blognav a {
    	font-size: 48px;
    }

    If you’re not familiar with CSS, I’d suggest checking this site to find out how you can use the right selectors to customize your site:
    https://cssworkshop.wordpress.com/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Jetpack background is different from the desktop site’ is closed to new replies.