Eric Daams
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Centering content on a pageThe problem is that you’re using
position:absoluteon the body and the center-blog div.In your body css rule, remove these bits:
position:absolute; left:0px; top:30px; width:150px;Also find
div.center-blogand removeposition:absolute. Once you done that there’ll be a bit of adjusting with margins to get it right, but it’ll scale properly.cheers,
EricForum: Themes and Templates
In reply to: how to change the sidebar color of a theme?You can do this in your CSS file. Find the name of the sidebar
divand set a background color. There’s instructions on how to use the Background property here:http://www.w3schools.com/css/css_background.asp
If you can’t make heads or tails of that, post your url so we can help you know exactly what to do.
Cheers,
EricForum: Fixing WordPress
In reply to: Sidebar not showing on posts – how can I change this?Hmm, odd. What’s your site’s url?
Forum: Themes and Templates
In reply to: Move Post Title into actual postSo you want the quote to appear above the title?
If so, my suggestion would be to save it as a custom value and insert that value above the post title in the template.
Cheers,
EricForum: Your WordPress
In reply to: Need Your Opinion Of My SiteOn the whole, it looks pretty good to me. A few comments though:
* You have two menus, one on either side of the header. Perhaps you could differentiate these stylistically (ie. background colour, smaller font, lighter shade of grey) to provide a visual clue to which one is more important. As it is, it just sort of makes me wonder why there are two menus at all.
* I’m not 100% convinced by the feature box. The photo works well, but the text below seems a bit of a strange thing to have in the slider. Maybe that’s just because I haven’t seen something like that before though… I suppose the thing is that it looks and feels very much like a standard WordPress excerpt, not like slider material.
Hope that’s helpful!
Cheers,
EricForum: Your WordPress
In reply to: site review please…For some reason it actually loaded a bit slowly for me. Overall, I think it’s quite effective, though I think a bit more whitespace around the text in the content area could help. From an e-commerce perspective, I wonder if your Book Now buttons are a bit too bland — use some brighter colours that really stand out to draw people’s eye.
Forum: Fixing WordPress
In reply to: Sidebar not showing on posts – how can I change this?Make sure that your single.php and page.php are both calling sidebar (most likely with the
get_sidebar()function.Eric
Forum: Themes and Templates
In reply to: image tiles on constructorHi Thomas,
If you haven’t modified your loop for that page, you should be able to change it in your admin area. Go to Settings > Reading and change the “Blog pages show at most” bit to 9.
Eric
Forum: Themes and Templates
In reply to: Styling Navigation menuFirst of all, you need to make the list items display inline (side by side, rather than top to bottom). To do so, add this rule to your stylesheet;
#navmenu li {display:inline;}Forum: Themes and Templates
In reply to: Can’t see more than 1 image in postDo you mean the second post, the one titled Autres modèles disponibles?
I’m guessing you’re probably using
<?php the_excerpt(); ?>instead of<?php the_content(); ?>— you should use the latter if you want to show the full post (ie. all the photos). Or you can explicitly set the excerpt for the post to include all five photos.Forum: Themes and Templates
In reply to: traffik pluginGoogle Analytics is the one I use. You can set it up easily with the Google Analytics for WordPress plugin.
http://wordpress.org/extend/plugins/google-analytics-for-wordpress/
Another one that I haven’t used but has a good reputation is WP-Stats, which will have the stats showing in your site’s back-end (as opposed to Google Analytics where you have to log into Analytics to check your traffic):
http://wordpress.org/extend/plugins/wp-stats/
Cheers,
EricForum: Your WordPress
In reply to: Headbangers India – A website for the Indian metal music sceneThat’s cool man. Great use of the Church theme.
Forum: Themes and Templates
In reply to: Publish only recent posts using get_post()Actually, sorry, first you’ll have to do a
foreachstatement:foreach ($posts as $post) { if ( $post->post_date > ' . date( 'Y-m-d', strtotime('-30 days') ) ) { // output here } }Forum: Themes and Templates
In reply to: Publish only recent posts using get_post()After first using
get_poststo get the last two posts, run thisifstatement at the start of your loop.if ( $posts->post_date > ' . date( 'Y-m-d', strtotime('-30 days') ) ) { // output here }I haven’t tried that, but I think it should work. It does of course assume that you’re storing the results of the
get_postsquery in$posts.Forum: Themes and Templates
In reply to: Create a Tag Page – Inove themeHi Lvcanvs,
Those two pages look pretty similar to me; what are you trying to do differently on the tag cloud page?
Eric