Why does one column seem to load first in Wordpress? - css

I have a Wordpress site that is doing something very bizarre. If you go to:
http://digitaldemo.net/joy/krippen-a-b-c/
When it loads, the main content div loads on the right hand side of the page
and then once the sidebar loads, THEN it gets pushed over to where it ought
to be.
It's only really noticable in Firefox, but I'd like to find out what is causing
it and fix the issue.
Any ideas?

I solved the issue! I added position:relative to the #content div and then added position:absolute and left:30px to the #content-left div. Voila!
Thanks for everyone who tried to help me!

Related

Page jumps on scroll to sticky footer on mobile only

for some reason my website continues to jump at the end of the page and the footer is not visible - however only on mobile. I have no clue what I could do differently. Maybe someone has an advice for me? I build my app using React. I already added extra margins to the bottoms of the body, the root, the div before to test it but nothing works!
Thanks a lot in advance!
code on github: https://github.com/seabysalt/myWebsite
website: www.sarah-alt.com

Issue with Div inside a div and page going to bottom

I have gone thru the site and searched for the last two hours and am trying to get a wordpress site to work correctly. Everything is working except the white box that holds the content will not go to the bottom no matter what I try. I have tried all the options here but I think it may be that I do not understand enough about css or the divs are all messed up from the template. Can someone please help out with what I have crossed. My page is located at http://craftedimages.com/AA/aae-events/ and you will see the white box on the right that does not extend down. I got this template and have been modifying it of which there were already lots of problems. Thanks for your time ahead of time.
Try adding
#page{
height:1035px;
}
..to the css - the sidebar is this height and although it is auto that is the given height
Hope this helps
Using chrome inspect element. I can see that your <div id="wrapper"></div> has the style
height:auto;
set it to
height:100%;
That should fix it. Only do that for this page. The other pages are set to auto because it forms to their content. This page doesn't have enough content to reach the bottom like the rest of the pages.

center site content on all devices

This is the site I am referring to: http://heattreatforum.flyten.net/
It was built as a child-site to the twenty-twelve theme.
I can't seem to get the content to center on every screen, and I am seeing a strange wide margin on the right that I just can't seem to locate in my css.
Any help would be much appreciated - thanks for looking!
The problem is that your div having id my-name has min-width: 1510px;. Delete it and all your problems will disappear.

CSS footer de-centers page content

I've been trying very hard to get a sticky footer to work in all browsers, for a Wordpress Theme, and I thought I had succeeded... until I realise that a middle table is being pushed to the absolute left of the browser window. The class is still:
position:center;
So I've guessed that it might be some footer CSS overriding it, but I can't find it! Can I be saved?
Here's a link to my temporary site. As you can see, not only are the test posts all to the left, the footer is now also not working as it should! So I've actually made it worse now.
Sorry for all that, I'm not sure what's causing the issue!
Hope you can help.
If you put text-align:center; in your #uptop?
The thing is that I would not suggest to embed table in divs since you broke the strict markup rules on the page. And after it is more difficult to find what causes this problems.

How to get rid of blank space under SimpleViewer Gallery?

I am working on a website and have embedded a Simpleviewer gallery into one of my pages. There is a blank white area under the gallery that I can't make go away. My ultimate goal is to have no need to scroll vertically on the page.
Here is a link to the page: http://www.tuckermatthewsphoto.com/a...tomotive1.html
Any help is greatly appreciated. This is driving me absolutely nuts.
Thanks
Well, I figured it out for myself.
Since I knew that there was nothing on the bottom of the page that I needed, I decided on trying to hide the scrollbar, so I added into the css file:
body { overflow:hidden; }
No more scrolling! This seems like it would be a pretty useful trick, so far it works in Safari and Firefox.

Resources