Matt240368 Apr 28, 2015 · 6:41 pm #1286 I am encountering an issue where the text/elements on my page touches the left end of the page and I want it to be a bit more to the right so there is a space between the text and the left side of the page (I believe this is called padding but I am not sure). I may have made this change by mistake because I was trying to adjust images on my home page to span the width of my screen by making a tweak in the theme editor. I remember not being successful in making the change but now days later I see that my home page looks the way I wanted it to but the other pages need to be fixed
Is there a way to fix this and also keep the home page the way it is? I mainly just need to get the text/elements on the other pages moved over so if this would require the change on the home page that’s fine because it’s more important that the other pages are fixed.
Best Regards,
Matt
Matt240368 Apr 28, 2015 · 7:34 pm #1287 Actually thinking about this more, if there is a site-wide fix that would also fix the home page then that would be the best solution because some other content on my home page is problematic being too close to the edge.
Best Regards,
Matt
Andrew Misplon Puro Apr 28, 2015 · 8:01 pm #1288 Hi Matt
Good to hear from you again. Hopefully our chats previously have helped progress in other areas.
Please remember not to use Appearance > Editor unless you’re making use of a child theme. All WordPress themes completely overwrite themselves during update. Ultra will have an update out very soon.
If you’re using Page Builder and making use of the Edit Row > Layout > Row Layout > Full Width Stretched option, you will unfortunately lose the regular content container padding left and right as you’re breaking out of that container. I’ll take a look at this moving forward. For now, I’d recommend trying the following in your Custom CSS plugin:
/* SiteOrigin Page Builder Full Width Stretched Rows Widget Padding */
.siteorigin-panels-stretch .panel-grid-cell:first-of-type .widget {
padding-left: 25px;
}
.siteorigin-panels-stretch .panel-grid-cell:last-of-type .widget {
padding-right: 25px;
}
.siteorigin-panels-stretch .panel-grid-cell:only-of-type .widget {
padding-left: 25px;
padding-right: 25px;
}
Let me know how that goes.
Matt240368 Apr 28, 2015 · 8:28 pm #1289 I am using the full page width so that would explain why this is happening. I have updated the custom css in the Simple Custom CSS plugin and nothing seemed to happen. I also realized that the previous custom css you sent regarding the text breakup on desktop screens didn’t seem to fix the issue. Is it possible that there is something preventing my custom css from working?
Best Regards,
Matt
Andrew Misplon Puro Apr 28, 2015 · 8:37 pm #1290 If you’d like, send through a link to your site. I’ll inspect the page source and see if the Custom CSS is there. There is a private reply checkbox at the bottom of the comment field if you’d like to keep your site url to just us.
Matt240368 Apr 28, 2015 · 8:47 pm #1291 This reply has been marked as private.
Andrew Misplon Puro Apr 28, 2015 · 9:04 pm #1292 Thanks Matt. The above reply was private, if you log out you’ll see so. I’ll introduce a little design element so we can easily see which replies are private when logged in.
I’ve made some changes to Custom CSS. Please check now and let me know where we stand on the bugs we’re looking at. Thanks.
Matt240368 Apr 28, 2015 · 9:53 pm #1294 This reply has been marked as private.
Matt240368 Apr 28, 2015 · 9:58 pm #1295 This reply has been marked as private.
Andrew Misplon Puro Apr 28, 2015 · 10:05 pm #1297 Thanks for the feedback, please re-check and let me know.
Matt240368 Apr 28, 2015 · 10:06 pm #1298 Okay, I was able to figure out how to fix it. Thanks again for the help.
Andrew Misplon Puro Apr 28, 2015 · 10:07 pm #1299 For sure, glad to hear you made progress. All of the CSS we’ve added to Custom CSS should be able to be deleted after the next upgrade. Let me know if anything else comes up.
Cheers for now.