redrooster123
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ordering category titles in horizontal navI could do that, but found a nice clean alternative:
http://wpguy.com/plugins/category-order/
Thanks!
Forum: Fixing WordPress
In reply to: category pages / homepage link in top navI tried both of these, no joy sadly.
Dont suppose anyone else has a solution?Forum: Fixing WordPress
In reply to: category pages / homepage link in top navIm not sure it is – I just tried that in there – spitting back errors!
Thanks for the effort tho
Forum: Fixing WordPress
In reply to: category pages / homepage link in top navsorry – re-posted again using the <correct> code method.
Forum: Fixing WordPress
In reply to: category pages / homepage link in top nav<!-- header --> <div id="header-wrap"> <div id="header" class="block-content"> <!-- main navigation --> <div id="nav-wrap1"> <div id="nav-wrap2"> <ul id="nav"> <?php <li<?php if (is_home()) { echo ' class="current-cat"'; ) ?>> <a class="fadeThis" href="<?php echo get_option('home'); ?>" <span>Home</span> </a> </li> if((get_option('show_on_front')<>'page') && (get_option('arclite_topnav')<>'categories')) { if(is_home() && !is_paged()){ ?> <li id="nav-homelink" class="current_page_item"><a class="fadeThis" href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } else { ?> <li id="nav-homelink"><a class="fadeThis" href="<?php echo get_option('home'); ?>" title="<?php _e('Click for Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } } ?> <?phpForum: Fixing WordPress
In reply to: category pages / homepage link in top navI tried that valendesigns, but im pretty sure im missing something basic when i paste the code in:
<!– header –>
<div id=”header-wrap”>
<div id=”header” class=”block-content”>
<!– main navigation –>
<div id=”nav-wrap1″>
<div id=”nav-wrap2″>
<ul id=”nav”>
<?php<li<?php if (is_home()) { echo ‘ class=”current-cat”‘; ) ?>>
“
<span>Home</span>
if((get_option(‘show_on_front’)<>’page’) && (get_option(‘arclite_topnav’)<>’categories’)) {
if(is_home() && !is_paged()){ ?>
<li id=”nav-homelink” class=”current_page_item”>” title=”<?php _e(‘You are Home’,’arclite’); ?>”><span><?php _e(‘Home’,’arclite’); ?></span>
<?php } else { ?>
<li id=”nav-homelink”>” title=”<?php _e(‘Click for Home’,’arclite’); ?>”><span><?php _e(‘Home’,’arclite’); ?></span>
<?php
}
} ?>
<?phpI have just shown a section of the code on the header.php here – where am I going wrong? (as you most prob can see, php is not my strong point)
Forum: Fixing WordPress
In reply to: IE7 – post page does not show any of textHi esmi,
Thanks for the advice – I went back to basics – stripped out the php ‘@ import’ commands to stop pulling the redundant style sheets and spent the last 2 and a half hours cutting and pasting the suspicious CSS…. it was this that was causing the problem:
.alignright {
float:right;
width:auto;
}all this was controlling was the position of a post image 🙂 All is now appearing in IE7!!! All I need to do now is sort out the style of each of these pages, as at the moment it looks a bit turd.
Thanks for the help!
Forum: Fixing WordPress
In reply to: Posts not showing in IE7anyone?
Forum: Themes and Templates
In reply to: Hide page title on only one page…Moshu, that is a genius way to solving this problem, I have been looking at a lot of solutions using:
http://codex.wordpress.org/Conditional_Tags
These were way too complex for my liking… A nice snippet of CSS is all ya need – thanks again!
Forum: Fixing WordPress
In reply to: Title of posts not showing upstar turn – thank you very much. Quite obvious now looking at it. Thanks again
Forum: Fixing WordPress
In reply to: Title of posts not showing upHi,
the problem I have is similar – the title of my posts appears everywhere on the site, apart from the ‘post detail’ page as I call it…
If you click the news cat it shows all of the posts under news, with titles. When you click a post title to read the full post (the ‘post detail’ page) the title is no longer there.
Forum: Fixing WordPress
In reply to: Posts not showing in IE7page in IE7, Windows:
http://browsershots.org/screenshots/b4c90a214c91e7112731e4c649c9322c/page in IE8, Windows:
http://api.browsershots.org/png/original/9d/9d6afd4e64d8e7c4bc7a0e91cbe7428d.pngpage in Firefox, Windows:
http://api.browsershots.org/png/original/95/95304ed826df7372da11b53870ca6522.pngIts only happening in IE7, the one I need / want it to work in
Forum: Fixing WordPress
In reply to: Posts not showing in IE7…bump
Forum: Fixing WordPress
In reply to: Posts not showing in IE7…added
width: auto;
to all the ‘float’s that were being flagged in validator…. still dont show in ie7 – FFS im off to bed, better luck with a fresh head perhaps…… damn you Bill
Forum: Fixing WordPress
In reply to: Posts not showing in IE7On further investigation, I think it has something to do with the ‘float’ property I am using in my CSS on these lines:
295 .mask-main .col3
295 .mask-main .col2
295 .mask-main .col1
405 #nav-wrap2 ul#nav li
414 #nav-wrap2 ul#nav li a
952 .left
1081 .alignleft
1084 .alignrightValidator is stating that “In (x)HTML+CSS, floated elements need to have a width declared. Only elements with an intrinsic width (html, img, input, textarea, select, or object) are not affected”
When I strip these lines of code, the text in question on these pages appears, but obviously is a complete mess with these parts missing – I am not sure how to get around this, but I will keep on at it (of course if there is anyone out there who knows how to sort this I would appreciate it tremendously!)