PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, January 28, 2022

[FIXED] Theme messed up after WP udpate

 January 28, 2022     css, wordpress     No comments   

Issue

My WordPress theme looks messed up after the engine upgrade for some reason, posts were displayed under each other in the past, but after the upgrade, they are making weird space below.

This is the main div CSS code:

    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;

and this is the CSS of the element itself:

    background: #fff;
    float: left;
    width: 260px;
    margin-left: 15px;
    margin-bottom: 15px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.31);
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 31%);
    -o-box-shadow: 0 1px 1px rgba(0,0,0,0.31);
    box-shadow: 0 1px 1px rgb(0 0 0 / 31%);

I have tried using line-height: 1 as well as vertical-align: top, but nothing seems to fix the issue, unfortunately.

Did anyone had the same issue? just in case this is the front page of my site that has a messed-up structure https://emilysquotes.com


Solution

Looks like there is a incompatibility with jQuery, try installing the plugin called Enable jQuery Migrate Helper Link. this is however a temporary solution. your theme needs an update to fully resolve the issue

enter image description here



Answered By - Jasper B
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing