Quin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: post layoutSite?
Delete them through FTP.
Remove them from Database.If you are still having problems, I’d suggest re-installing WP. Just make a backup first.
(though that is always my default, and may not be the best answer – will work though)Forum: Fixing WordPress
In reply to: Custom sidebars & custom page templatesSite?
Forum: Fixing WordPress
In reply to: mouse cursor Hover overI’d say it’s a dark blue.
Anyway, in body, you have color as #999 (line 108).
That is the default (technically).Your problem lies in some JQuery file (custom-css), which is changing your font colour.
I have no idea how your files are structured (I cannot even find that file), but you can add!importantto line 108, before the semi-colon to overwrite.color: #999 !important;Forum: Fixing WordPress
In reply to: How to change this image?WP-Admin -> Appearance -> Editor -> layout.css
Line 566 – that is where the image URL is that you need to change.
Forum: Fixing WordPress
In reply to: how to change my blog's title font?No, please, don’t. I have the horrible feeling you’ll post it all.
Check on line 101 of the CSS file. That is where the font family is set.
You need that font-family for other tags – namely H1, H2, H3, etc.
SO H1 on line 149 should have a new font-family if you want a new font for there (or anything with the class of “entry-title”).
Forum: Fixing WordPress
In reply to: New Administrator – Publishing News PostsSite?
Are you sure they are marked as Publish, and not Draft (or that other option)?
Also, which category?
Forum: Fixing WordPress
In reply to: how to change my blog's title font?Define title font.
This is done in the stylesheet (css).
Find whichever header, or element (probably H1 or H2), and add:
font-family: "Whatever Font You Want", sans-serif;The sans-serif is just a default, contingency font. If it’s a serif font (with little ticks on the letters), then use serif.
Sans = Without
Serif = Ticks
Sans Serif = Without TicksForum: Themes and Templates
In reply to: [Enigma] Vertical Footer MenuIs the footer wigitised?
Forum: Themes and Templates
In reply to: [Fruitful] Remove logo from home pageYea, Balint is right, but I will point out the uses of !important – too many can cause more problems.
For fully responsive design, the CSS should include ‘media screen’ and be coded correctly.
With !important, it is essentially writing, re-writing, and then over-writing (normal, reduced, remove-from-reduced).
Forum: Themes and Templates
In reply to: [Dazzling] Removing entry-meta from single post pagedisplay: none will ‘remove’ the meta information.
To edit what information you want to show, you will have to dig around in the API.
This is where I’d jump from: get_the_author_meta
Forum: Fixing WordPress
In reply to: Change Color of JUST the links in postsThere is some CSS animation on the a tags.
I’d used Developer Tools in Chrome to figure out what styling is being applied to your links.
Forum: Fixing WordPress
In reply to: How do I remove the excess spacing everytime I use the bullet point?Hi Rael… sorry, been so busy with a new job.
Essentially to change the default you use
pandulin the CSS. No dot (.) or hash (#), just the tag/element.Forum: Fixing WordPress
In reply to: Very perplexing – Cannot add Images, change date, etc.Go for the reinstall.
Easiest thing to do is keep a copy of wp-config and XML of the database. You’ll lose themes and plugins (unless backed up), then it’s a simple matter of deleting the files/folders from the server and reuploading them, following the guide on wp-admin/install.php.
You save time by uploading wp-config with WP.
Forum: Fixing WordPress
In reply to: How do I remove the excess spacing everytime I use the bullet point?I always reset and rebuild me CSS before I code, so everything looks the same and generic. Same font size, colour, weight, padding, margin, everything.
It is good practise.
Now that being said, it sounds like you are having trouble with P and UL.
As Dave suggested, you can have a separate class to reduce the bottom margin of the P preceding the UL, or you can check the UL spacing as well (maybe even LI).Though, if you do have a lot of P to UL posts, you will need to add the class/styling to each of the P’s, which can be tedious. If you don’t use P anywhere else, change the default CSS for P, or the UL (depending on how that affects the text – it is site-wide).
Then again, you can edit the P for just certain elements/classes.
There are many ways to solve this, so we just need to find your solution.