wibu
Forum Replies Created
-
Forum: Your WordPress
In reply to: hownifty.com – the worlds coolest stuff!I’d probably use more line spacing for the content to make it a bit easier on the eyes (and easier to read).
The color scheme seems a bit dark for my tastes and orange and pink don’t go well together in my opinion.
(Sorry if I come off harsh, It’s just I’m one of those people that gives it straight. The style is by no means bad, it could just be better, like anything in life.)
Forum: Your WordPress
In reply to: how to make a blog fast and light?Try out https://mnm.uib.es/gallir/wp-cache-2/ WP-Cache.
Forum: Your WordPress
In reply to: Is simple better?https://imodder.com/something.png
That’s what I meant with my previous posts.
Forum: Your WordPress
In reply to: Is simple better?“@wibu – yeah, I definitely could do that but it wouldn’t add too much color to the mix, know what I mean? I feel like the black and white theme can be a little dull..! BUT, I also feel like it does the trick..”
Maybe so but I’m partial to the high contrast and cleanliness of the black and white version. The dark blue link color would go nicely with it and add a tiny hint of color.
Forum: Themes and Templates
In reply to: Modifying the <title>I both agree and disagree with your SEO point above. I agree that having the title of the post first is benificial but sometimes having the site name/URL at the end can also be benificial depending on the keywords in the URL.
Forum: Your WordPress
In reply to: Is simple better?I prefer the black and white version. How about trying the link color (dark blue) of the blue header version on the black line version…
Forum: Fixing WordPress
In reply to: Multiple loops – newbie needs helpYesterday I was in the same position as you, my html/css is quite good but my php doesn’t exist beyond simple changes to existing code.
I found this https://codex.www.ads-software.com/The_Loop#Multiple_Loops_Example_1 extremely useful and it basicly details what you are looking for in the 3rd pratical example (I think it’s the third).
Forum: Themes and Templates
In reply to: Modifying the <title>Lots of thanks for the help (again!).
I’ve found what I need and am now using this code:
<title>
<?php wp_title(”); ?>
<?php if(wp_title(”, false)) { echo ‘ : ‘; } ?>
<?php bloginfo(‘name’); ?>
</title>Which gives me a title of “Page Title : Blog Title” on all sub pages and “Blog Title” on the index.
Forum: Themes and Templates
In reply to: Posts from a certain catergory(or catergories) listedCheers for the links. I had looked at the_loop stuff in various cms related articles but miraculously never stumbled on that gold. Checking them out and experimenting now.