James Kirk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I make a page like this?Heya COpyRyte,
You certainly do not need to call the sidebar into any page template you create. Check out this resource in the Codex for an excellent start to learning how to make your custom page templates.
Hope that helps!
Cheers!
Forum: Themes and Templates
In reply to: Best way to set up this nav? (screenshot of design attached)Heya CAWD,
Couldn’t you just tap into the awesome WordPress Menu system making sure to place your child pages are added to the navigation menu (and shifted over slightly so they get the dropdown treatment inherent in the WordPress core) and then create your CSS styling to match your design? Again, being sure to use the Horizontal Menu styling?
That’s how I’d go about it if I wanted to stay current to the latest, greatest with WordPress.
Hope that gets you closer to your desired outcome.
Cheers!
Forum: Fixing WordPress
In reply to: Create Page and have it show all posts?Heya tcwaters,
Do you remember where you set the home page to be a static page? (In your WordPress Admin area, Click on Settings >> Reading)
Right at the top there, where it says Front Page Displays you should have chosen a page (with your calendar on it) from the drop down next to Front Page:
Right under that is the Posts Page: and another drop down.
Here’s the kicker, though 😉 You will want to create a New Page (it can be blank, no content on the page). Name the page whatever you want to show on your site–“Blog” or “Posts”–or whatever you like.
Now when you are on the Settings >> Reading page, that Blog or Posts page should appear in the drop down menu and you can choose it to display your posts.
Hope that helps you out!
Cheers.
Heya AnthonyDaconti,
Can you post your site URL so we can check it out? Thanks a million!
Hey there CaptainCrunch,
According to the content on the http://codex.wordpress.org/Function_Reference/get_the_tag_list (scroll down to the “A Slightly More Complex Example” section:
You can add classes and styles with CSS, as necessary.
I’m assuming that you would have to insert your CSS selector into the
$beforestring. Perhaps something like:<?php if(get_the_tag_list()) { echo get_the_tag_list('<p><span class="tags_style">',' ','</span></p>'); } ?>I am pretty sure you are not going to get the CSS class code to insert into the actual anchor tag like you have in your example above.
See if that gets you closer to a solution which will work for ya!
Cheers.
Forum: Fixing WordPress
In reply to: Widget-like functionality, how to do?Hey Domen.
Not 100% sure what you are asking for, but thinking maybe, perhaps, the Spots Plugin might be something for you to check out (assuming you have not already!)
Hope that get’s you closer to where you’re hoping to go.
Cheers!
Forum: Everything else WordPress
In reply to: Please suggest me !Since you really don’t give us a lot to go on in order to make suggestions to you, just going on the domain name, why not do both of those things? Create part of your site that allows for Inn/hotel/motel owners to submit articles as well as listings in a web directory you set up for listing various accommodations. You could create packages for hotel owners that included the opportunity to submit articles (to get links back to their sites) as well as a directory listing their inn’s website address. The possibilities are really endless, MJM, so you just need to let your mind go!
Hope that helps somewhat get your thoughts flowing.
Cheers!
Forum: Fixing WordPress
In reply to: How to enlarge the text-size of post's linked title?Right on, leahfavia! Not sure how to mark the thread as resolved. Perhaps either you or one of the moderators do that? Anyway, glad you got what you were looking for.
Cheers!
Forum: Fixing WordPress
In reply to: put code tags in every post.Hmmm, maybe something like this plugin, “Preserve Code Formatting“??
Forum: Plugins
In reply to: Alternatives to All in one SEO packGive “WordPress SEO by Yoast” a look-see. You will likey! 😉
Cheers!
Forum: Everything else WordPress
In reply to: Searching for pluginGive a search here in the plugin repository for “Featured Posts Slider” (or just click that link 😉 )
Cheers!
Forum: Fixing WordPress
In reply to: A Single Post Causing ProblemsMaybe you have fixed this? Both pages work exactly the same for me in my Chrome browser.
Forum: Fixing WordPress
In reply to: pluginYou’ll probably want to rename the disqus plugin (via FTP) if it is blocking your logging in. I tried to set up an account on your site, but the email never came through.
Good luck!
Forum: Fixing WordPress
In reply to: My very first wordpress website please helpThe sliding door theme creator (the theme you are using) has a nice forum set up for support. Find it here: http://mac-host.com/support/.
Cheers!
Forum: Fixing WordPress
In reply to: How to enlarge the text-size of post's linked title?Looks like your theme sets the h5 header in the css/normalize.css file as such:
h5{ font-size:0.769em; line-height:1.2em; font-weight:normal; text-transform:uppercase; margin:0 0 .6em; } h5 a { text-decoration:none; } h5 a:hover { text-decoration:underline; }You should be able to override those settings simply creating a new h5 entry in your style.css file. Be sure to add the “!important” (no quotes to the selectors for the h5 style
h5 {font-size:0.769em; !important;}Cheers!