Quin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change Color of JUST the links in postsSimple CSS really.
a { color:pink; }changes the hyperlink colour to pink for your entire site.
.post-content a { color:pink; }will change and hyperlink within an element class=”post-content”.Granted, this is notthe actual code – a good guess on my half, but chances are it will not work.
The theory is sound, you just need the right classes and styling.Forum: Fixing WordPress
In reply to: Product image too bigAhh, the !important, how sneaky.
((I don’t have firebug; I’m on my iPad))
Forum: Fixing WordPress
In reply to: Very perplexing – Cannot add Images, change date, etc.It could be the sub-site itself at fault.
Try creating another copy of it and see what happens.
Forum: Fixing WordPress
In reply to: Website wont open after renaming the theme folderIt may have been hacked – there’s a lot of that going round lately.
Check the index.php file. If there is no code, re-upload it.
Forum: Fixing WordPress
In reply to: Auto post my Facebook posts to my WP blog?The only way is through some plugin or app… and chances are it is Facebook and not WordPress which needs to deliver.
Forum: Fixing WordPress
In reply to: Center/br tags appear in customized menuI don’t know why you cannot see the HTML
If it is a Header, you really ought to style it with CSS, rather than inline HTML.
Forum: Fixing WordPress
In reply to: Just lost all my plugginsSounds like a server issue.
Repeat the procedure to get them all working 🙂
Forum: Fixing WordPress
In reply to: Login constantly redirects me to live blogHmm, not too sure on this one.
It sounds like it could be down to the Settings, which are now locked off.Can you check the database? The URL May be wrong.
Other than that, a new install will fix.
Forum: Fixing WordPress
In reply to: Advice on displaying quotes and memesNot if you use the Categories correctly.
As long as all these fall under “Quotes” and “Memes” (or whatever), and not mix them around/double posting, then you should be fine.
Forum: Fixing WordPress
In reply to: How to Remove Excess Spacing Between Sidebar WidgetsYour code can be messy due to many factors.
WordPress always adds more classes and code than just a regular HTML page – that’s the drawback of using WordPress; it’s not pretty code.
That being said, it looks like the methods being used to make the Theme are not the latest standard. HTML5 and CSS3 have come a long way to make things more streamlined and quick.
It doesn’t matter unless you are going to be diving into the code.
As for lowering your ranking, directly, it shouldn’t. What would directly is if you have too many hidden values; however, since it is not streamlined code, it will load slower and that would indirectly lower your rankings due to efficiency.
Forum: Fixing WordPress
In reply to: Product image too bigTrue that, and chances are that was just a typo anyway, but it may not be and it may be in other areas of the CSS.
All I know is if I wanted .zoom-button to go, and there was no other styling after,
.zoom-button { display:none; }ought to work, at least it would work in my Themes.Forum: Fixing WordPress
In reply to: trying to get the background to work<!-- HTML --> <div class="sidebar"> <div>WIDGET AREA 1</div> <div>WIDGET AREA 2</div> </div> /* CSS */ .sidebar { background:#fff; }Something like that – it’s difficult to code on the iPad.
Forum: Fixing WordPress
In reply to: Picture Template Rendering Diff Size PreviewIt may have been in the upload, it may have been in the import or the settings.
Have you tried it again?
Forum: Fixing WordPress
In reply to: Product image too bigCurly brace, not normal bracket.
Forum: Fixing WordPress
In reply to: Using Page Revisions as an ArchivePage revisions basically act like a backup. The only way I can think is to create a plugin to pull these revisions and recreate them as new pages.
Or use Posts and Categories, and just create them manually.