oturia
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hide Page from logged out usersHow often do you add/remove pages from the menu? One thing you could do is list them out manually, then wrap the private page in a “is logged in” conditional statement so that only logged in users can view them.
It would look something like this:
<?php if (is_user_logged_in()){ echo "<li>link to page url</li>" }; ?>Or, you could not alter the lists at all, and just add that to the end of the wp_list_pages tag, before the closing tag. That would list the page there, but just at the very end of the menu.
Does that make sense?
Forum: Themes and Templates
In reply to: Need to make top navigation bar go across entire siteIt’s hard to tell unless you can read Javascript.
Can you put up the URL to the demo of the theme you purchased?
Forum: Themes and Templates
In reply to: Help Installing Theme into WordPressOK, to find the version number, click on the “Dashboard” item on the backend of admin.
The first thing you should see at the top right is a section titled “Right Now” It will list the number of posts, pages, comments, etc…
At the very bottom of the “Right Now” section, it should say “You are using WordPress x.xx” or whatever version you are using. Do you see that?
You are correct in believing it is not installed correctly, because you certainly aren’t seeing what you should be seeing.
My suggestion, regardless of your answer, would be to download the most recent version of WP, unzip it, copy the files over the existing ones, navigate to the site so that it forces the database upgrade, and then check and see if you are able to add themes then.
Forum: Themes and Templates
In reply to: Change recent post list style in widgetOK, that would be a bottom border. Try looking for this:
.blockcontent-body ul li { line-height: 1.25em; }and change it to this:
.blockcontent-body ul li { line-height: 1.26em; border-bottom: 1px solid #477029; }The last item was the color of the border, because the site you sent me to had green items. If you need a different color, just change the value after the #mark.
Let me know if this does it for you. If so, don’t forget to mark the post as resolved.
Forum: Themes and Templates
In reply to: Twenty Ten Header Image modificationSo did that fix it?
Forum: Themes and Templates
In reply to: Need to make top navigation bar go across entire siteWell, I wouldn’t manually place strong tags in the html. It’s better to adjust the stylesheet.
However, the top navigation is using Cufon to generate a special font for the items in the navigation. You can still stylize cufon, if the font file that was uploaded included a bold version of the font.
Did you manually install Cufon or did it come built into the theme?
Forum: Themes and Templates
In reply to: Twenty Ten Header Image modificationHmmm. I would try this:
<?php get_the_attachment_link($post->ID, false); ?>I’m not in a place where I can test that, but if you do some research by Googling get_the_attachment_link I’m sure you’ll find a similar or better example.
Nope, those changes were safe.
I would recommend browsing the CSS tutorials available online. The easiest way to learn is to search in a string like this:
css change hover coloror
css make text boldYou will usually find the results quite fast.
Now, on to your questions:
line spacing can be adjusted by line-height: 1232px; or however high you want it. So for a 16px font, you could use a 19px line-height:
#main .widget-area ul ul li a{color:#235570; line-height:19px; font-weight:bold; border-bottom:2px solid #037c2f; }This should get you started in the right direction. Don’t forget to mark the post as resolved.
Good luck!!!
Forum: Themes and Templates
In reply to: Change recent post list style in widgetDo you mean a “|” when you say a bar?
Forum: Themes and Templates
In reply to: Need to make top navigation bar go across entire siteTry this:
<div id="top-navigation"> <?php wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'menu', 'menu_id' => 'topnav', 'depth' => 0, 'theme_location' => 'mainmenu', 'after' => ' | ' )); ?> </div><!-- end #top-navigation --> <div class="clear">If that doesn’t work, try this:
<div id="top-navigation"> <?php wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'menu', 'menu_id' => 'topnav', 'depth' => 0, 'theme_location' => 'mainmenu', 'link_after' => ' | ' )); ?> </div><!-- end #top-navigation --> <div class="clear">Forum: Themes and Templates
In reply to: Need to make top navigation bar go across entire siteAre you listing these pages manually or are you using the list_pages function?
Please post the code that falls between the
<div id="top-navigation"></div>code.Forum: Themes and Templates
In reply to: The pictures are mssing at the footerI checked out the original theme from Rocketthemes and they are using that section as a blogroll, which is also the code you posted above.
But on theirs, they aren’t using images. It looks like this issue might be in the individual links themselves.
Please go to the Links section in the backend, and open up the one that says “About Us”.
My guess is, that at the bottom, there is an image address added under the advanced section (all the way at the bottom).
Can you remove that image line and save the link and then post here once it’s done so I can have a look?
Forum: Themes and Templates
In reply to: Need to make top navigation bar go across entire siteThe logo is 98 pixels tall, and so is the div that’s holding it (#top). But from the looks of the image, it could be cropped quite a bit.
I would suggest cropping some of the bottom of the logo image to get it down to 60-70 pixels. Whatever the new height of the logo image is, change the CSS of that div to match it. Here is the current CSS for that Div:
#top { float: left; height: 98px; padding-top: 6px; position: relative; width: 940px; z-index: 100; }Play with it a few different times and you’ll get the right size.
Forum: Themes and Templates
In reply to: Help Installing Theme into WordPressSorry for all the questions, but I need a few more answers:
Can you tell me the version of WordPress the dashboard is showing you have?
Also, is this a self hosted blog or is it hosted on WordPress.com?
Forum: Themes and Templates
In reply to: The pictures are mssing at the footerWithout paying someone to do it, the next best bet would be to paste the code here for us to take a look at.
Put code in between
backticks.