martinrowan
Forum Replies Created
-
I had the same issue with 8.0.3 and fixed it by generating new v3 keys.
Forum: Themes and Templates
In reply to: [ColorMag] Gutenberg table block – wide width not aligned@nitushrestha10 Thanks yes that additional CSS fixed the table alignment issue.
Is this change likely to be rolled into a theme update?
Forum: Themes and Templates
In reply to: [ColorMag] Default font sizes subtly inconsistentI have worked around the issue with a small css change. It was more making you aware that there was this subtle problem with the theme and could investigate making it consistent, either at 15px or 16px.
p { font-size: 16px; }
Forum: Themes and Templates
In reply to: [ColorMag] Gutenberg table block – wide width not aligned@nitushrestha10
I’ve created a test/example page to show the problem: https://www.martinrowan.co.uk/1990/09/page-title/
ThanksOK I’ve updated the beta site with the CSS changes to format the site rather than using the Options for Twenty Seventeen plugin. The problem with scrolling doesn’t appear to be happening, so likely linked to the plugin.
Now just to get the final bit of functionality back that the plugin provided, adding the RHS widget area back to the front page.
Thanks for your help and advice.Andrew I am using a Child theme, but I guess the modifications you are talking about are probably coming from the plugin https://www.ads-software.com/plugins/options-for-twenty-seventeen/ which is performing quite a bit of customisation to the layout.
I’ll see if can can re-do the work based purely on a child theme and see if it has any issue. Thanks for your help.
Thanks for your help Andrew.
I removed all my !important rules and only added one back where it was necessary to set the background colour for the latest news items.
I see that it’s the alteration of the padding which was being done with:
.twentyseventeen-front-page .site-content { background-color: #F5F5F5; padding-top: 2em !important; }
Removing the !important from the style, increases the padding and allows the scroll-to, to work. Though I’d prefer to have less padding here, and between the different panels on the front page. I guess I’ll have to experiment to see if I can determine a different method to reduce the padding without breaking scroll-to.
It also appears that the scroll then appears to scroll the title off the page before it reappearing and scrolling slightly a second time, sorry hard to explain.
Thanks Martin- This reply was modified 6 years, 6 months ago by martinrowan.
Some more experimentation…
The problem appears to be beyond just the duplicator tools. The problem is actually with anything below the top level/stage page of any plugin. For example.Works: /wp-admin/admin.php?page=duplicator
Doesn’t work: /wp-admin/admin.php?page=duplicator-tools or /wp-admin/admin.php?page=duplicator-settings or /wp-admin/admin.php?page=duplicator-goproWorks: /wp-admin/admin.php?page=wpseo_dashboard
Doesn’t work: /wp-admin/admin.php?page=wpseo_titlesWorks: /wp-admin/admin.php?page=Wordfence
Doesn’t work: /wp-admin/admin.php?page=WordfenceWAFEnabling WP_DEBUG doesn’t show errors being logged.
Hi Cory, I deleted the cache before creating the package and also tried recreating the package after deleting the cache and deactivating the cache plugin I was using. I’ve re-saved the permalinks too, none of this has resolved the issues above.
As I’m moving to a new host the original site is at https://www.my_domain_name.co.uk whereas the new site is currently being setup on the new hosting provider using https://185.145.203.195/~_my_username
I didn’t want to update the DNS records until I knew the duplication process/migration had been successful. Could this cause the issue with duplicator not working after migration?
Could it be that the build was done on the old host using mySQL 5.5.51 and the new host is using a significantly newer version: 10.1.24
Thanks
MartinForum: Plugins
In reply to: [The Events Calendar] Breaks post & page titlesI’ve found what I believe is the cause of the problem. Not sure what the intent of the code was, but I suspect it’s doing more than the designer intended. If you edit: /wp-content/plugins/the-events-calendar/resources/tribe-events-full.css
You’ll find:
header.entry-header, footer.entry-meta { display: none; }
Which is causing the titled to be hidden.
I commented out these lines in this file and in: /wp-content/plugins/the-events-calendar/resources/tribe-events-full.min.cssThis fixed my site for me. Hope this helps. Hopefully Modern Tribe will be along soon with a proper fix, or an explanation why this is needed and so if we need override it in our theme/child theme or not.
Forum: Plugins
In reply to: [The Events Calendar] Breaks post & page titlesI have the same problem, if I add the Events List widget to my page whilst using the “Tribe Event Style” then all my page and post titles (and editing controls) disappear. Setting the default style sheet to Skelton Styles fixes the title issue, but I prefer the nice month view calendar I had before.
I don’t recall this change happening when I first added the plugin, so maybe a recent regression? Or maybe I just wasn’t paying enough attention, I guess I could restore from a backup if I had to check.
Forum: Themes and Templates
In reply to: Help getting footer copyright text centredFixed it!
Went back to my original code, then started to remove the section above the copyright section, when I removed all but the CEOP image all was fine, added the links on the bottom right and it went out of alignment again.I found by adding clear: both, to by definition of .copyright it fixed it.
.copyright { background-color: #fff; color: #001323; /* Scout Black */ font-size: 0.8em; padding: 0px 0; text-align:center; margin: 0px; clear: both; }
Thanks again for all your help.
Forum: Themes and Templates
In reply to: Help getting footer copyright text centredAh spoke too soon. It appears to remove/fix the centering issue on the copyright section. But the purple footer above it appears to have gained a extra blank line causing it to be wider than I wanted.
I switched back to the code you supplied too, just in case it was slight changes that broke it, but both have the same outcome.
Forum: Themes and Templates
In reply to: Help getting footer copyright text centredThanks for your help. The code you provided worked! Yipee!
I was able to remove the use of the aligncenter class and still keep it working. End result:
<div class="copyright"><p></p><?php echo 'Copyright ? ' . date("Y") . ' ' . get_bloginfo('name'); ?>, all rights reserved | Charity number: 801523 Theme derived from the <a>" title="<?php esc_attr_e( 'Twenty Thirteen Theme', 'twentythirteen' ); ?>"><?php printf( __( '%s', 'twentythirteen' ), 'Twenty Thirteen' ); ?></a> | Reworked by: Martin Rowan </div>
Thanks again for your all your help.
MartinForum: Themes and Templates
In reply to: Help getting footer copyright text centredHi. Thanks for the clarification. I’ve applied the updated footer, but no change the first line still isn’t aligned.
N.B. I’ve also updated to WP 3.8, just in case that would have helped. But it hasn’t.Could the problem be something incorrect before the copyright block which is causing this weird alignment issue?
Thanks Martin