sfboarders
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trouble after WP 2.6 UpgradeCan anyone help us resolve this issue? I find it hard to believe that the people at wordpress to have a new release without testing it first.
Forum: Fixing WordPress
In reply to: Trouble after WP 2.6 UpgradeIt seems to be happening for a lot of people who are upgrading to 2.6. I am also having the same issue. I get the following message on my pages and comments.
Not Found
Sorry, but you are looking for something that isn’t here.url structure
Forum: Themes and Templates
In reply to: css navigation (current page indication/active window)Well I went through bout 15 themes in the directory and managed to find some code that was ez for me to implement and understand. So basically I used the code below and renamed my “current” class to “current_page_item”.
<li <?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { echo “class=\”current_page_item\””; } ?> >” ><?php _e(‘Home’); ?>
<?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?>Forum: Themes and Templates
In reply to: css navigation (current page indication/active window)Well I found some themes with the effect I want. It basically ads the pages created to the nav bar. Examples below:
<li class=”<?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { ?>current_page_item<?php } else { ?>page_item<?php } ?>”>
<li class=”<?php echo($sMenuHome); ?>”>/”><span>Home</span>
<?php if ($aOptions[‘show_archives’] && $aOptions[‘archives_cat’] != ”) : ?>
<li class=”<?php echo($sMenuArchive); ?>”>/?category_name=<?php echo($aOptions[‘archives_cat’]); ?>”><span>Archives</span>
<?php endif; ?>
<?php wp_list_pages(‘depth=1&title_li=0&sort_column=menu_order’); ?>Forum: Themes and Templates
In reply to: css navigation (current page indication/active window)I can see how your code works but I don’t see how I can enter the variable in the pages I created.
So these pages I created below in WP which are similar to a post (in wp-admin–>Manage–>Pages).
div id=”navcontainer”
ul
<li a href=”/”>Home
<li a href=”?page_id=59″>Links
<li a href=”?page_id=51″>News
<li a href=”?page_id=47″>Contact
ul
divForum: Themes and Templates
In reply to: css navigation (current page indication/active window)I’m a lil lost on this part:
You’ll need to add this bit of php code to the page you’d like active;<? $pageid=”contact”; ?>
This basically asigns ‘contact’ to be the value of pageid. This must be declared BEFORE your menu code. You can call this whatever you like, doesn’t have to be contact.
`Where do I add this if the pages where created in WP?
Forum: Themes and Templates
In reply to: css navigation (current page indication/active window)Yea, for “current” I can do this right?
#navcontainer #current a
{
background:url(nav/navont-bg.gif) repeat-x 25px;
color: #B4C24B;
font-weight: bold;
font-size: 14px;
padding: 15px;
}Forum: Themes and Templates
In reply to: css navigation (current page indication/active window)Here’s my code below:
I have not made “active” yet. I would like it to be the same as:
#navcontainer li a:hover
#navcontainer ul
{
padding: 10px;
margin: 0;
list-style-type: none;
background:url(nav/nav-blgr.gif) repeat-x 25px;
width: 100%;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
text-align: center;
}#navcontainer li { display: inline; }
#navcontainer li a
{
text-decoration: none;
background:url(nav/nav-blgr.gif) repeat-x 25px;
color: #E87830;
font-weight: bold;
font-size: 14px;
padding: 15px;
border-right: 1px dashed #000;
}#navcontainer li a:hover
{
background:url(nav/navont-bg.gif) repeat-x 25px;
color: #B4C24B;
font-weight: bold;
font-size: 14px;
padding: 15px;
}Forum: Fixing WordPress
In reply to: Make a “page” into the index pageThanks Kafkaesqui for the quick response. That plugin worked perfect! *raises thumb* =)
Forum: Themes and Templates
In reply to: Gemini Template (Remove Sidebar)Hey podz. I put some more links at the top but is there a way I can remove the trailing ‘|’ vertical line after the last link?
Forum: Themes and Templates
In reply to: Gemini Template (Remove Sidebar)Thanks podz for the help. That worked!!!
PS In my last post I found the sidebar in my footer.php. page. ??
Forum: Themes and Templates
In reply to: Gemini Template (Remove Sidebar)NM, I found the footer.php lurking in the footer.php page. Can you tell me how to get the text to expand through the hole page?
Forum: Themes and Templates
In reply to: Javascript issues with IE and Headspace ThemeIf there is a CSS or PHP way of doing tool tips please let me know. Take a look at the link above and you can see some examples. ??
Forum: Themes and Templates
In reply to: Javascript issues with IE and Headspace ThemeLorelle, when I view source in the example of the code it states to put it at the footer right above the </body>
What I don’t understand is why does the code work in Firefox and not in IE?
Why does the code work on another theme with both browsers and not Headspace? I think there is something in the Headspace theme fooling IE.
Forum: Themes and Templates
In reply to: Javascript issues with IE and Headspace ThemeLorelle, Nope that’s not the site. I use a test server at home before I upload it live. That code you are suppose to enter code in the footer and head which I have done. I implemented the code in the main “index.php” file.
On the lower right hand corner of IE I get this error.
<b>//C:\WINDOWS\system32\shdoclc.dll/dnserro.htm…</b>
I can remove all of the code except the code that belongs at the footer and that error comes up. I can leave all of the code in header and the index and remove that script line in the footer and no error.