Quin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove 'breadcrumbs' spaceI’ve just had a look on your site, and I think the white space is caused by many things, a lot with the margins.
You have the navigation layer, followed by clearers, margin-bottom, and generally empty layers.
However, the main culprit for the white space is content area, the container.
Forum: Fixing WordPress
In reply to: Problems with SuevaFreeYou may want to sort out those posts.
Forum: Fixing WordPress
In reply to: How to Remove Excess Spacing Between Sidebar WidgetsIn your CSS (the file is css.css) on line 656, you have
.sidebar .widget, .sidebar .text_box, .sidebar .thesis_email_form, .sidebar .query_box { margin-bottom: 38px; }The problem is that .widget is adding a bottom margin of 38px.
I would recommend adding a new line
.sidebar .widget { margin-bottom:0; }to remove the gap, without affecting .text_box or the other classes.BTW, you can improve the layout so much by recoding it (you have layers in layers, which makes coding more difficult).
Forum: Fixing WordPress
In reply to: Static Pages: Front Page and Post Page(s)It’s okay, I’ve worked on a walk-around, utilising custom menus π
Now I have my Blog Page (using the template to exclude unwanted categories and their children) and set the categories that I want as their own link in the menu π
Forum: Fixing WordPress
In reply to: Custom Form to Query DatabaseWell I managed to resolve the problem I had – it turns out it was rather straight forward once I knew how.
I got the idea from a custom contact page tutorial (cannot remember the URL).Forum: Fixing WordPress
In reply to: Adding a custom field inside shortcode in my page templateWait, you’re adding PHP to a WordPress page?
Forum: Fixing WordPress
In reply to: Can I control myhome.php content through WordPress admin?Wait, what are you wanting to do?
Do you want your site to display a specific page (e.g. About Us) as the first page, and have the posts on another page?
That is simple.
or do you want something like my latest project?
Forum: Fixing WordPress
In reply to: WordPress Page Editor – Problems adding HTMLNope, that doesn’t do anything (she has always had it disabled).
I thought it could be down to ID, but CLASS is also stripped.
Though I have other divs with other class names and they are fine (completely unaffected).EDIT: I’ve now established that classes without numbers seem to work…
<div id="layer1"></div>became<div></div>when stripped
<div class="layer-a"></div>works fineForum: Fixing WordPress
In reply to: Visual Editor now strips HTML comments (new in 3.2)… How to prevent?The odd thing is that I have a similar problem (and nothing else works).
Visual takes it all away, HTML keeps it as it is (for me).
Another Admin edits the post, and it gets stripped (even though the page is edited in HTML view).This is the first time I’ve ever come across this. Is there a way to add custom style in the Kitchen Sink so text can be wrapped in specific styles? (maybe a solution?)
EDIT: I added the code to the function page, but it didn’t solve anything.
However, for me, I simply stopped using id and didn’t use numbers for class names.I wonder what will happen if I remove the code from function.php…
Forum: Fixing WordPress
In reply to: Custom Forms on PagesI know its not the best, but I just wanted to get it sorted out straight off (I’ve since got my favourite plugin to work).
But with the program, it re-loaded the page and said that it couldn’t be found. Exact same URL and everything.
I got no emails… it just failed.
Thanks for the advice π
Forum: Networking WordPress
In reply to: Sharing posts between two blogsAt least that’s easier to do (and only once) π
Forum: Networking WordPress
In reply to: Sharing posts between two blogsYou could just copy and paste the post to the other blog.
A quick search shows that this isn’t possible, even the suggestion I was going to give wouldn’t work (it involves playing with the database).