I was designing a Blogger template . The demo looks fine.
But as you can see in the image given below the Edit Layout section of Blogger Dashboard shows the misaligned search form.
Can any one please figure it out ??
[/IMG]
Thanks.
I was designing a Blogger template . The demo looks fine.
But as you can see in the image given below the Edit Layout section of Blogger Dashboard shows the misaligned search form.
Can any one please figure it out ??
[/IMG]
Thanks.
Quick note for : this kind of mismatch between the Dashboard preview and the live site usually comes from CSS that assumes a different container (floats, absolute positioning, global input rules, or missing clears). ’s suggestion that the admin preview changes the page context is a reasonable lead — the editor can add wrappers or different widths that expose fragile CSS.
A short, practical debugging flow you can run now:
position:absolute, negative margins, or global selectors that target input, form, or * — those are common culprits. Also check for an unclosed tag in your template HTML; a missing </div> often shifts blocks only when the DOM is wrapped differently (as the dashboard does). If you want a quick, noninvasive fix you can try (scope your rules tightly to the widget so they apply consistently):
/* debug/align search widget inside its container */
.widget .search-form { display: inline-block; vertical-align: middle; margin: 0; position: relative; }
/* visual debug */
.widget { outline: 1px dashed red; } If that doesn’t help, paste the exact HTML for the search widget and the surrounding column markup and I’ll point to the specific rule to change.
Jump to Post— LukeBennett 0I dont think it will be misalligned its just because your in edit so it has to push that box down.
I dont think it will be misalligned its just because your in edit so it has to push that box down.
In the demo blog it looks fine. I want it to look aligned in edit section also.
I dont think it will be misalligned its just because your in edit so it has to push that box down.
Oh, hm contact your CMS support
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.