Sheila
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page links not working??mshensley…you are a genius! Thank you
Forum: Fixing WordPress
In reply to: 3.0 update mesed up direct linksActually, all my navigation links are messed up. The just don’t work anymore. For instance…they remain on the page that is currently up. So If I’m on the homepage, each nav link when hovered shows the homepage.
If I’m on the zen gallery…from the sidebar…the nav links all when hovered remain on that page. Weird.
Forum: Fixing WordPress
In reply to: home page – older post link at bottom broken?thank you! yes, this did fix it. it’s funny, never have I updated or fiddled with this php file. The above code was in there, but I cut and pasted the above over it and it came back.
??
thank you.Forum: Fixing WordPress
In reply to: {NextGEN Gallery} Click to enlarge?Someone? Anyone? Still not resolved. Does anyone have any idea how to click on the little gallery and make it bigger? Is there a setting somewhere I am missing?
MY SITEForum: Fixing WordPress
In reply to: Adding a subtitle to my homepage headeruhhhhh, forgot to write that that first block (above) goes in the header. the first part of the info is already in your header, i just included it to guide you to where you should look in the header.php
Forum: Fixing WordPress
In reply to: Adding a subtitle to my homepage headerWell, I actually figured this out on my own. It seems that that is actually possible when no one replies, lol.
the above code needed: I had to add <h2 id=”description”> to get it to work and then put stuff in the styles for description.
So it looks like this:
<div id="header"> <h1 id="logo"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name') ?></a></h1><p><p><h2 id= "description"><?php bloginfo('description'); ?></p></p></h2>
and in the stylesheet:
#description { position: relative; top: 7px; left: 40px; font-size; 26px; font-family: Cambria, "Chapparral Pro", Georgia, "Times New Roman", serif; }
of course you’ll have to tweek your fonts/sizes/top/etc…but this hopefully will help someone! Good luck. btw, I’m using the grunge floral theme.
Forum: Fixing WordPress
In reply to: Adding a subtitle to my homepage header<p><?php bloginfo(‘description’); ?><p>
Although this does add my tagline…it’s not adding it where I need it to be. I’m putting it after the blog title code but it’s showing above it. my site
I took it off all together. But I still want it on, I just don’t know where exactly to put it in the header.php
Thanks!
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!Oh I’m giving you lots of cyber hugs right now! You are a GENIUS!
Thank you so much. I would have seriously NEVER found that on my own. In fact, when you sent me that file, I couldn’t believe you found that. I knew I was looking for something like that but couldn’t figure out why I couldn’t access it.Again, thank you SO VERY much!
Now I can tinker away!
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!Oh good gravy. lol. Okay, I see I can access the file in my hosts file manager thing. Which I did. And I see exactly what you sent me. Now…should I change it in the file manager? Is there a way to put it with the other theme files in my theme editor in the dashboard?
I won’t actually change anything until you tell me to. I have a bad habit of messing things up. ??
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!Okay, yes, that’s where I was looking. Here’s what it says
“Theme Files
Templates
Comments (comments.php)
Footer (footer.php)
Header (header.php)
Main Index Template (index.php)
Page Template (page.php)
Sidebar (sidebar.php)
Single Post (single.php)
Theme Functions (functions.php)
Styles
Stylesheet (style.css)” ** This is the one I cut and pasted beforeI’m lost. I found all that through dashboard, but your file is not accessible through this. The only style file is that little thing I pasted.
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!How did you find that (that you linked?) lol. I’m not seeing any of that, anywhere.
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!When I go into my Theme Editor, and it lists the template files, and all the stuff like header, footer, etc etc is listed, then there’s one file for styles, and that’s the cut and paste (above). I Swear! ??
Unless it’s hidden somewhere?
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!This is all that’s in my stylesheet:
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ .aligncenter { display:block; margin:auto; } .alignleft { float:left; } .alignright { float:right;
Seriously, that’s all that’s in there. Should I add what you wrote above? Thanks.
Forum: Themes and Templates
In reply to: {PAINTER theme} header help!(btw, I can change the colors and everything in the color editor, I just cannot move it.) Thanks.
Forum: Fixing WordPress
In reply to: Next/Previous Links from Home Page Show Same PostsGamerEdie, you are a genius! I’ve been looking for a fix for this for a couple weeks. And, btw, this is the only time I’ve ever actually found a solution on this forum.
For anyone still with questions, here’s the codes I used:
<div id="nextprevious"> <div class="alignleft"><?php posts_nav_link('','','« PREVIOUS ENTRIES') ?></div> <div class="alignright"><?php posts_nav_link('','NEXT ENTRIES »','') ?></div> </div>
this goes right above your </div></div> <!– Closes Content –>
in your INDEX.php fileNow, in order to get the previous/next links to bring up previous, next correctly (in pages, not just the same front page) you need to add GamerEdie’s code above which I cut and pasted here again to make it easy:
<?php if (is_home()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-3&paged=$paged"); } ?>
Make note! see where it says “cat=-3 ??? that -3 means you are telling it NOT to bring up cat 3. If you want to replace that number replace it. If you need to hide other cat’s just add a coma, minus sign and the next number (i.e. (“cat=-560,-4,-43&paged=$paged”) )
Also note, the above code replaces the is home thingy in your index.php file that is there already, IF this isn’t already the code in there.
Thanks to everyone for continuing to post on this question! I’m sure you’ve all helped a lot of people (I’m just one of them)