Smartflight
Forum Replies Created
-
What a bummer. I really hope it becomes a feature in one of the next few releases.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Live feed and 'like' post?Alright, thank you for your response ??
Really looking forward to the like functionality.
Forum: Themes and Templates
In reply to: [Theme] Add panel support for social media iconsBump.
Forum: Themes and Templates
In reply to: [Theme] Add panel support for social media iconsEh, can any moderator move this to Themes & Templates? ??
Forum: Plugins
In reply to: Positioning facebook, twitter and paypal donation buttonsMark this topic as solved, please ??
Forum: Fixing WordPress
In reply to: Arguments to wp_nav_menu() are not workingI realize it was a fall back to the list of pages. I turned that to false, and it works.
If no location is specified to any menu, how does wp_nav_menu work?
Forum: Fixing WordPress
In reply to: Getting users in the WordPress listForum: Fixing WordPress
In reply to: pagesCreate the new page. Publish it.
Now, assuming your theme supports a custom menu, goto Appearance -> Menus. Create a new menu, or edit the Default one.
You will have the options to re-arrange both categories, and pages. Choose them as you like, and in the order you want.
Then ask your theme to use the menu you just made! ??
If your theme does not support custom menus, post back and I’ll show you what changes you have to make in certain wordpress files.
Forum: Hacks
In reply to: A widget to display only the latest postOk, I can’t believe how easy it is to get in to the WordPress files- so organised and editor-friendly. I have some HTML knowledge, and some C++. To add on, CSS makes it marvellously easy!
I am done here. Sure I still will be making changes, I’m not done with the entire theme.
Also, I am not posting the solution here since it is theme-specific.
Forum: Hacks
In reply to: A widget to display only the latest postPlus, both the left and right side would be center-aligned, overall.
Hence, if I, say assign 150px to the left side, and 350px to the right side, it’d show up at the horizontal center of the page taking up the assigned spaces.
I hope that’s clear.
Forum: Hacks
In reply to: A widget to display only the latest postI appreciate your help MichaelH.
But I dug in a little in the default wordpress theme and my new theme. I have managed to do what I wanted to do.From here on, I have another issue.
The “Recent” widget takes up the left part, and the single latest post takes up the right part. There is an annoying gap between them.
Here’s the code to this part.
<div id="home-mid" class="clearfix"> <div class="left"> <?php ithemes_add_widget_location( 'Home Middle Left' ); ?> </div> <div class="right"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <h7><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></h7> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><h7>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></h7></p> </div> <?php endwhile; ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; ?> </div><!--end right div--> </div><!--end home-mid div-->
Is there a way I can assign ‘x’ pixels to the left side, and ‘y’ pixels to the right side?