Forum Replies Created
-
AuthorPosts
-
apple_jaxMember
Thanks Anita!
apple_jaxMemberThanks for moving my question.
They have actually suggested finding other help. They have done all they can do.
**Still need help**
{shooting up flares}apple_jaxMemberThanks. I got it figured out, but not without a mini-panic 🙂
2 things were super helpful:
http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/I was able to see a random user here, and delete it. I also added myself as a new user--I had been removed. However, I was able to get logged in again, but I didn't have full access to the site after that.
This helped walk me through it and I'm back on track.
http://www.wpbeginner.com/wp-tutorials/how-to-add-an-admin-user-to-the-wordpress-database-via-mysql/
I was missing a few key plugins, but as soon as I got them activated again, my site looks back to normal.
I am going to add a 2nd user profile for myself and one for my husband, should this happen again in the future.
apple_jaxMemberYes. The thing to remember is that mobile & desktop images are different proportions.
Choose photos that have objects near the center and give your edges some space for adjusting to screen size
apple_jaxMemberYes. Mine is working fabulously: http://flourishboston.com/
apple_jaxMemberScratch that. I changed 'contain' to 'cover' and that seems to work the best.
apple_jaxMemberHey There,
I got somewhat of an answer from studiopress:
The default in parallax is to not reduce the original size of the images, so there is plenty of image to fill the screen. In the past, I have used images with items on a smaller scale, and that worked better for mobile not looking so terrible.
If you want your images to reduce, you can replace following code block at line# 1836, in your child theme's "style.css" file.
However, the line that says: "background-size: contain" will ensure that your images are 100% in screen, and might create issues with your home page text/layout.
If anyone has a better solution to this, or knows other options for the background size issue, I would love to know it!
CSS HERE:
Change From:
.home-section-1, .home-section-3, .home-section-5 {
background-attachment: scroll;
background-position: top;
-webkit-background-size: 100%;
-moz-background-size: 100%;
background-size: 100%;
}To:
.home-section-1, .home-section-3, .home-section-5 {
background-attachment: scroll;
background-position: top;
-webkit-background-size: 100%;
-moz-background-size: 100%;
background-size: contain;
} -
AuthorPosts