I updated my login page URL so it’s not the default wp-admin. However, this action has removed all of the styling I set up with the CodeKit Plugin. Is there anyway to fix this so the Styling is applied to the new login page URL?
Many Thanks,
Jason
Styles are not the same as it should be. I use Elementor PRO to build the web site.
Is there any leftover after the uninstall that I should take care of?
Kind regards,
Ivan
Kind regards,
Ivan Roca
/assets/css/admin.css line: 2
Here is the following code I found to resolve this:
.wc-shipping-zone-settings tbody {
display: inherit;
}
This should be removed or disabled. It seems as though the table is inheriting from the incorrect parent format resulting in the tables being “Squished” and not aligned with their table headers respectively.
I was reviewing this on Firefox (latest installment 68.0.1 (64-bit))
]]>This effects my website, but also the author’s (see https://code.mundschenk.at/wp-typography/ where hyphens are set in Helvetica and Lucida Grande instead of Gill Sans and Hoefler Text).
Would this be a styling issue or a missing glyph issue?
Disabling the “smart dashes” option returns the hyphens to normal, but I’d rather not lose the functionality.
]]>I compared the code that was being created by WordPress in both situations.
While in the Visual Editor, it inserts this code:
<a href="https://the_original_image_URL"><img class="size-medium wp-image-1254" title="The Image Title Here" src="https://theoriginalimageURL-300x180.jpg" alt="The Alt Label Here" width="300" height="180" /></a> The caption here.
While in the HTML Editor, it inserts this code:
<a href="https://the_original_image_URL"><img src="https://the_original_image_URL-300x180.jpg" alt="The Alt Label Here" title="The Image Title Here" width="300" height="180" class="size-medium wp-image-1254" /></a>
Clearly, there is a difference in how the code information is written. In the second–the one that displays the image correctly–the Caption Attribute is inside the opening shortcode tag. In the other, it is not. Everything else seems to be the same–attributes are in a different order, but that shouldn’t change anything.
Not only is the whacky code created while inserting images in the Visual Editor, but if the Visual Editor is used at ANY time to edit an existing post with images already in it, it will change the code there, too, and none of the images will display properly.
What the heck is going on???
I can easily go in and adjust the code to make the images display the way they are supposed to, but the clients I set the theme up for are not code-saavy. They need these WYSIWYG functions to work properly. That’s the whole point of creating a WordPress site for them—ease of editing without a great deal of code knowledge.
Here’s a link to a sample page, showing the problem:
https://www.serehd.org/test-post/
Any ideas anyone?
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]
]]>