burakbbb
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Tabbed Widgets] Does not work in my blog tooI also tried and it does not appear even when I’m using the default theme. is there any solution to this problem?
Forum: Fixing WordPress
In reply to: Where the hell is the rss feed?why my rss feed just looks blank, there is only a white page with nothing on it. any opinions?
edit: sorry i found the problem. its because i was logged into my account. that’s kind of strange when i logged out it started to work.
Forum: Plugins
In reply to: i cant see my ads with advertising manager pluginPlace ads in your template by adding ” to your template in the place you want to see an ad (where ‘name’ is the name of your ad).
Place ads in your blog posts and pages by adding ‘[ad#name]’ to your blog post (where ‘name’ is the name of your ad)
ok i found where i was doing wrong. I skipped the last two steps.
Forum: Fixing WordPress
In reply to: how to create archives page on K2 themefound the answer: https://www.wpdesigner.com/2007/10/11/how-to-create-an-archives-page/
thanks a lot.
that was what i meant. thanks very much
Forum: Fixing WordPress
In reply to: how to make your blog privateok thank you. i suppose there is no other option in admin panel to protect it like you can in wordpress.com blogs.
thank you all.
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?hi again, you said dropdown menu but i didn’t want a drop down menu. i was actually trying to do something similar to the one on pearsonified.com. the menu is jumping up a little bit when you mouse over, and gets white after you go to that page. actually with my codes my first link gets activated which is the home one. but the rest does not turn into the active state when i go to that sections.
i think the problem may be the pages. as i do not change any codes in them as basically they are automatically created.
I dont suppose you could change the last four lines of my css code,as the problem is they dont get activated.
and you can already see the positioning. so no need to change them. What i need is just someone to change my last 4 lines of the css code and as the positioning is already there i want all the buttons go -60 when they are activated.Also I’m using one header.php for all pages too. so i dont understand how i can give active state for all 4 sections. when i give active state to all in header.php, they are all activated.
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?hi again, thanks for your answer but i still cant get it work. can you have a look at this topic (i wrote more clearly what i need to get fixed) and answer if you can help. thank you for your time.
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?could you exactly tell me what i should do? im still trying and cannot get it work.
I think now i ve done exactly what you suggested. isn it right? sorry again but im still trying to cope with it. If you know itexactly could you write down the codes? could you tell me where im doing wrong now below?
HTML code (k2-header.php)
<ul id="nav"> <li id="home"<?php if(is_front_page()) echo ' class="active"'; ?>><a href="">home</a></li> <li id="archives"<?php if(is_page('archives')) echo ' class="active"'; ?>><a href="?page_id=2">archives</a></li> <li id="news"<?php if(is_page('news')) echo ' class="active"'; ?>><a href="?page_id=35">news</a></li> <li id="contact" class="last<?php if(is_page('contact')) echo ' active"'; ?>"><a href="?page_id=31">contact</a></li> </ul><!-- .menu -->
css code (style.css)
#nav { list-style: none; padding: 0; margin: -105px 25px; width: 332px; height: 30px; background: url('images/menu.gif'); position: relative; } ul#nav li { width: 80px; height: 30px; padding: 0 4px 0 0; text-indent: -900px; float: left; } ul#nav li.last { padding: 0; } ul#nav li a, ul#nav li a:visited, ul#nav li a:hover { display: block; width: 80px; height: 30px; background: transparent url('images/menu.gif') no-repeat; outline: none; } ul#nav li#home a, ul#nav li#home a:visited { background-position: 0 0; } ul#nav li#archives a, ul#nav li#archives a:visited { background-position: -84px 0; } ul#nav li#news a, ul#nav li#news a:visited { background-position: -168px 0; } ul#nav li#contact a, ul#nav li#contact a:visited { background-position: -252px 0; } ul#nav li#home a:hover { background-position: 0 -30px; } ul#nav li#archives a:hover { background-position: -84px -30px; } ul#nav li#news a:hover { background-position: -168px -30px; } ul#nav li#contact a:hover { background-position: -252px -30px; } .home ul#nav li#home a, .home ul#nav li#home a:active, .home ul#nav li#home a:hover { background-position: 0 -60px; cursor: default; } .archives ul#nav li#archives a, .archives ul#nav li#archives a:active, .archives ul#nav li#archives a:hover { background-position: -84px -60px; cursor: default; } .news ul#nav li#news a, .news ul#nav li#news a:active, .news ul#nav li#news a:hover { background-position: -168px -60px; cursor: default; } .contact ul#nav li#contact a, .contact ul#nav li#contact a:active, .contact ul#nav li#contact a:hover { background-position: -252px -60px; cursor: default; }
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?if it would help you to sort out the problem, here is my menu image.
I’m feeling a bit desprate now. I ve been trying to fix this all week though it may be because im a beginner
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?i thought there may be a problem with the last 4 lines as they are to do with active links.
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?opps sorry i just copied the codes you sent but it didn’t work so i just changed the codes little bit by looking at the navigation manual codes here but that didn’t work either. i think the problem may be the css file. do you have any example codes of a horizontal css menu that i can apply with the codes you ve suggested for php file. or can you check what my be wrong with my css menu codes?
#menu { list-style: none; padding: 0; margin: -105px 25px; width: 332px; height: 30px; background: url('images/menu.gif'); position: relative; } ul#menu li { width: 80px; height: 30px; padding: 0 4px 0 0; text-indent: -900px; float: left; } ul#menu li.last { padding: 0; } ul#menu li a, ul#menu li a:visited, ul#menu li a:hover { display: block; width: 80px; height: 30px; background: transparent url('images/menu.gif') no-repeat; outline: none; } ul#menu li#home a, ul#menu li#home a:visited { background-position: 0 0; } ul#menu li#archives a, ul#menu li#archives a:visited { background-position: -84px 0; } ul#menu li#news a, ul#menu li#news a:visited { background-position: -168px 0; } ul#menu li#contact a, ul#menu li#contact a:visited { background-position: -252px 0; } ul#menu li#home a:hover { background-position: 0 -30px; } ul#menu li#archives a:hover { background-position: -84px -30px; } ul#menu li#news a:hover { background-position: -168px -30px; } ul#menu li#contact a:hover { background-position: -252px -30px; } .home ul#menu li#home a, .home ul#menu li#home a:visited, .home ul#menu li#home a:hover { background-position: 0 -60px; cursor: default; } .archives ul#menu li#archives a, .archives ul#menu li#archives a:visited, .archives ul#menu li#archives a:hover { background-position: -84px -60px; cursor: default; } .news ul#menu li#news a, .news ul#menu li#news a:visited, .news ul#menu li#news a:hover { background-position: -168px -60px; cursor: default; } .contact ul#menu li#contact a, .contact ul#menu li#contact a:visited, .contact ul#menu li#contact a:hover { background-position: -252px -60px; cursor: default; }
Forum: Fixing WordPress
In reply to: where can i find the page file created via admin panel?sorry to give you headache but altough ive done it, it still does not make the links active except from the first home button.
here is my code again
<ul id="menu"> <li id="home"><a href=""<?php if(is_home() || is_single() || is_category() || is_tag() || is_author() || is_year() || is_month()) { echo ' class="active"'; }?>>home</a></li> <li id="archives"><a href="?page_id=2"<?php if(is_page('archives')) echo ' class="active"'; ?>>archives</a></li> <li id="news"><a href="?page_id=35"<?php if(is_page('news')) echo ' class="active"'; ?>>news</a></li> <li id="contact" class="last<?php if(is_page('contact')) echo ' active"'; ?>"><a href="?page_id=31">contact</a></li>