anticimex
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Descriptions not showing upYeah I noticed the same thing, what I did was to just use YouTube’s API instead to load the descriptions dynamically for each video. Requires some coding, though.
Exact thing is happening to me too. When you press Import Videos, it refreshes the page and says “Total videos imported: 0” and isn’t importing anything.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Total Videos Imported: 0I have the same problem.
Forum: Fixing WordPress
In reply to: Scripts are not loadingPlease, anyone? I really need help with this as it’s the only thing stopping me from continuing with me theme.
Forum: Fixing WordPress
In reply to: Show entire post when paginatedCould you be a bit more specific?
Forum: Fixing WordPress
In reply to: Three divs in a rowTry adding float:left; to each respective box.
What this does is that it floats the div to the left so that other content appears next to it. If you do this to the three boxes, they will hopefully appear next to each other.Here’s an example:
#content { width: 600px; } #leftbox { width: 200px; float: left; } #middlebox { width: 200px; float: left; } #rightbox { width: 200px; float: left; }I did not exactly understand which part of the code you pasted you needed help with, but I hope this helped you out.