Hi guys, I need some wordpress themes which display pages in their footer only. Please give me your suggestions. Thanks!
Hi, First of all thank you very much for replying to this thread. I want to display my pages such as About Us, Contact Us, Terms of Use, SiteMap,Privacy Policy etc. Horizontally in my footer. You can see the sample here www.cichlidfishcenter.com I don't want them to display one below another. Hope there will be some suitable themes with this setting. Thanks!
Do you have a theme in mind? I can modify it for you if you want. Just sent me the files and I'll see what I can do. - Rufas
Hi Buddy, I want some code to replace the code in my footer, so that it will display only the pages in the horizontal direction at my fooer. See if you can help me out. Thanks for your response!
I'm not really understanding what you are saying? is it that currently all tyour pages are being shown verticaclly and you want them to display horizontally? Well the best thing is to go and edit the css file and add the code 'display:inline' to those 'li' elements
You can use this: <div id="footer-menu"> <ul> <li class="first"><a href="<?php echo get_option('home'); ?>">Home</a></li> <?php wp_list_pages('title_li='); ?> </ul> </div> Code (markup): Now the CSS part: #footer-menu li { display:inline; } Code (markup): Be sure to add some padding so each li won't be so close together. Add border-left if you want this effect: Home | Privacy Policy | Sitemap That's it. - Rufas
Hi Buddy, Thanks for your help. Where should I paste this code in my footer? Will it display my pages horizontally? Also show me how to add padding to display it like "Home | Privacy Policy | Sitemap" and what should I do with the css code you have given above? Thanks!
This is what I'm afraid. I was expecting you to know where to put them. You should paste the PHP code on footer, normally on footer.php. Which line? That's depends on the theme you are using. I know there are some theme will put a feed/comment subscribe link on their footer. But before or after? I can't tell. As for the CSS code, paste in into style.css, last line. #footer-menu li { display:inline; [b]padding:0 10px;[/b] [b]border-left:1px #000 solid;[/b] } Code (markup): The padding can be different according to your preference. If 10px is too much, you can change it into 5px. It depends. Border-left is color-dependent. I used #000 (means black), but it sure won't work if your footer area is white text on black background. Unless I can see the theme, the possibilities is endless. - Rufas
Google it sir! And preview the themes before installing it. You can log into your wordpress account and go to themes > add new >. Search for themes related to your area of specialization. That is it.