Mandipdx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Reset wp-admin Password Email doesn't send me an emailThat was my next step. But clearly there is a password recovery issue. Have tired 2 different emails and nothing.
Forum: Fixing WordPress
In reply to: Reset wp-admin Password Email doesn't send me an emailMy site is hosted through bluehost.
I actually can’t login to another user either otherwise I would have changed it that way.It won’t send me an email. I am worried my site might have been hacked.
@esmi some links changed some didn’t. The updated messed it up, but I am redesigning so not a huge deal. I think you just have to go through the selectors and call them out one by one. My tech speech isn’t so great I know. Good luck!
The link colors don’t show up red and blue on rollover
a:link { color:#D72027; } a:visited { color:#000; text-decoration: none; } a:hover { color:#91D9F7; }@andrew I did clear the cache on the website caching plugin and on the browser.
@alchymyth What you are saying makes a lot of sense, but I don’t know what each of them styles are. I have tried this for the body, but I don’t know what the code would be for the other items. Let me see if I can find more items to include.
Forum: Fixing WordPress
In reply to: Display only one category for my galleryI did exactly that and this is what it looks like: http://renae.mandiellefson.com/galleries/building/
replaced
$query->query('post_type=gallery&posts_per_page=-1'); ?>with
$query->query(‘post_type=gallery&posts_per_page=-1′&cat=60); ?>Is that right?
Also the sorter menu on top doesn’t work. I need to do this for several sub pages. What else can I do?
Forum: Fixing WordPress
In reply to: Display only one category for my galleryThanks for the correction- take makes a lot of sense. The reference is helpful and I am the seemingly complex code is conflicting with above code. Any ideas?
Here is the code I am working from. Thanks!
Forum: Fixing WordPress
In reply to: Display only one category for my galleryI think I must be placing the code in the wrong place.
http://renae.mandiellefson.com/galleries/building/
This is what I am posting
<!-- Mandi's code, for custom gallery categories --> if(is_page( 'building' )) { query_posts(cat=cat-60); }I have also tried:
<!-- Mandi's code, for custom gallery categories --> <?php if(is_page( 'building' )) { query_posts(cat=cat-60); } ?>and also
<!-- Mandi's code, for custom gallery categories --> <?php if(is_page( 'building' )) { query_posts(cat=cat-60); } <?php endif; ?>on gallery page (template-portfolio-three.php). I would use a gallery plugin, but I need the styling like on the theme, and same across the board. I also like the category sorter at the top.
Thanks for helping out a designer. I want to get better at PHP, but I am still a newbie.
Forum: Fixing WordPress
In reply to: Display only one category for my galleryThanks for answering manishkrag! What page do I put this on? Is there anything to keep in mind since I will need to do this for about 5 pages?
Thanks!
Forum: Installing WordPress
In reply to: Hosing on BluehostI had an odd similar problem about a year ago. Everyone else could see my site, but me. It turned out I had a virus on my computer that was messing with the DNS for my website. It was totally weird, but I had a computer tech walk me through deleting the malware. I hope that helps in case you too had that rare issue.
Forum: Fixing WordPress
In reply to: Conditional tags, exclude only the home page, Widget LogicCan I just tell you how much you guys rock! THANK YOU so much!
the:
!is_front_page()worked wonderfully!Forum: Fixing WordPress
In reply to: Conditional tags, exclude only the home page, Widget LogicI want to exclude just this page. Include all others.
Thanks.
Forum: Themes and Templates
In reply to: CSS to move menuAfter it going haywire, I fixed it.
final code I used:‘#top-left{width:220px; float:left; overflow: hidden; }
#top-right{width:720px; float:left;}#top-navigation{clear:right; padding:100px 10px 0px 0px;}
‘Forum: Themes and Templates
In reply to: CSS to move menu@alchymyth thanks!
I added the code, took out search box and changed to float right:
‘
#top-left{width:220px; float:right; overflow: hidden; }
#top-right{width:720px; float:right;}#top-navigation{clear:right; padding:0px 10px 0px 0px;}’
It is almost perfect. How do I make the menu display above the line?
Thanks so much!
Forum: Networking WordPress
In reply to: General multisite question can I post same post on 2 blogs?Thanks for the help guys!