I received a resolution and am posting it below in case it helps anyone else. The resolution is the Custom CSS at the end. Thank you for your prompt assistance!
The Issue is coming from bootstrap CSS which We have called bootstrap.css by MaxCDN in prime extensions VC plugin. Below the Code
*::after, *::before {
box-sizing: border-box;
}
ol, ul {
margin-bottom: 10px;
margin-top: 0;
}
This is Default Bootstrap Code which million million use using this as Default.
The 7 theme should have define default code for their own theme. But they Didn’t.
I have install a Custom CSS plugin and define the code instead above code:
*::after, *::before {
box-sizing: unset;
}
ol, ul {
margin-bottom: 0;
margin-top: 0;
}