stanordan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving all posts from root to /blog subdirectoryYou can try changing the Site URL in the wp-config.php file if you have not done that already. Sometimes this change needs to be made manually.
Forum: Fixing WordPress
In reply to: Sidebar displaying below content on homepageI’m not sure what could have made it happen suddenly, but it’s possible that the width of the main area is pushing down the sidebar down to the bottom. Did you make any changes recently besides the plugins that could have affected CSS? Are you using Bootstrap? If so, do you host the Bootstrap files locally, or do you use the CDN?
Forum: Fixing WordPress
In reply to: Page deleted even from trash but still accessible through UrlIt’s possible that the page is still available in the user’s cache, or the server cache (depending on if and how you have server caching configured).
Forum: Fixing WordPress
In reply to: The subpages are duplicated or show 404-errorYou can also try resetting permalinks to default and testing the page links.
Forum: Fixing WordPress
In reply to: The subpages are duplicated or show 404-errorIt looks like it could be a problem with those pagination links. Have you tried using a different theme — like one of the WordPress default themes — as a test?
Forum: Fixing WordPress
In reply to: Can I copy a Heading 2, rename it and assign a different color font?You could also try doing the inline style. This would be the same as changing the class each time you put in an H2:
<h2 style=”color:black;”>Heading Black</h2>
<h2 style=”color:blue;”>Heading Blue</h2>
Of course, this is not always ideal because if you ever change the color you would need to go and update these manually, but this gets you the same effect.
Forum: Fixing WordPress
In reply to: Can I copy a Heading 2, rename it and assign a different color font?This can also get you the effect you’re looking for:
<h2 class=”version-one”>Heading</h2>