jaliciense4784
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: paginate_links outputs a ">" character for each resultSo essentially this did not work because of the table. For some reason the paginate_link() function in WordPress does not work well with Tables, maybe it’s just the way I’m using it. When I used <div> tags to style my data, the “>” characters went away.
but just in case you were curious I was getting an output that look like this:
1 2 3 Next > > > >
where the numbers are the pages for the pagination and the “>” were being added for each record that was returned from the database.
Once I stopped using the table it went away.
Hope this helps someone.
Forum: Fixing WordPress
In reply to: The body has a marginAnswer is here if anyone runs into the same problem. I had padding in the footer of
padding: 10px 20px;
width: 100%;if the padding is changed to:
padding: 10px 0;
it makes the problem go away. The strange thing is that it was doing it on the header rather than the footer. But it works.
http://stackoverflow.com/questions/13713925/wodpress-theme-white-space-to-the-right?answertab=active#tab-topForum: Fixing WordPress
In reply to: Chaning the number of post on my home pageThanks everyone very helpful. You guys rock. I love the WordPress community.