- This topic has 42 replies, 3 voices, and was last updated 8 years, 9 months ago by
Leo.
-
AuthorPosts
-
May 30, 2017 at 5:05 pm #326370
Leo
StaffCustomer SupportYou’re welcome 🙂
June 26, 2017 at 11:06 am #339364Sebastián
Hi! Everything on my website looks great right now except the mobile look of my site.
This is my blog page on mobile: http://i.imgur.com/hpG9X55.png
This is the single post page on mobile: http://i.imgur.com/KUjt9qe.png
I want to center everything for mobiles The title, the featured image, the images in general, the date and author and also the text. Is it possible? Only for mobiles the site on my computer looks amazing and i want to keep it that way.
Thanks
June 26, 2017 at 11:21 am #339370Leo
StaffCustomer SupportYou mean like even out the padding on both side and make the container center?
Try this CSS:
@media (max-width: 768px) { .separate-containers .inside-article { padding: 30px; } }June 26, 2017 at 11:37 am #339385Sebastián
I think it worked im seeing it different in my customize page but not in my mobile though.
Is it possible to center the title, date and author ONLY on mobile phones? Because the code you sended me leave the same space between both sides but not centered the elements.
And I say this every time I ask for something, just in case. Sorry if my english is bad, im really good at it but its not my native language.
thanks
June 26, 2017 at 11:40 am #339389Leo
StaffCustomer SupportPadding looks normal to me now. Try clearing mobile browser cache.
Try this additional CSS:
@media (max-width: 768px) { .entry-header { text-align: center; } }Your English is very good 🙂
June 26, 2017 at 11:53 am #339401Sebastián
It didn’t worked :/
I cleared my mobile cache and my blog page looks like this: http://i.imgur.com/FftpuRm.png
And I want something like this for example: http://i.imgur.com/FvlWKSZ.png
June 26, 2017 at 11:59 am #339407Leo
StaffCustomer SupportLooks like you didn’t add the CSS here? https://generatepress.com/forums/topic/troubles-with-spacing/page/3/#post-339389
June 26, 2017 at 12:07 pm #339427Sebastián
June 26, 2017 at 12:09 pm #339429Leo
StaffCustomer SupportOops typo. Missed a column. Try again. https://generatepress.com/forums/topic/troubles-with-spacing/page/3/#post-339389
June 26, 2017 at 12:21 pm #339447Sebastián
Awesome! we’re getting close to my wishes lol, its looking like this: http://i.imgur.com/ugIAxHw.png
Is it possible to reduce the padding between the image and the except text and also to center the read more tag? Something like this: http://i.imgur.com/njlOG0J.png Only on mobile
And i would like dissapear the sidebar from the mobile look. Only on mobile
Thanks!
June 26, 2017 at 12:59 pm #339495Leo
StaffCustomer SupportSomething like this:
@media (max-width: 768px) { .post-image-aligned-left .post-image { margin-bottom: 2px; } .read-more-container { text-align: center; } .sidebar { display: none; } }June 26, 2017 at 1:20 pm #339505Sebastián
Simply amazing. Thank you so much!
June 26, 2017 at 1:22 pm #339508Leo
StaffCustomer SupportNo problem!
-
AuthorPosts
- You must be logged in to reply to this topic.