1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Need some Wordpress Themes......

Discussion in 'HTML & Website Design' started by waibhav, Aug 18, 2011.

  1. #1
    Hi guys,

    I need some wordpress themes which display pages in their footer only. Please give me your suggestions.

    Thanks!
     
    waibhav, Aug 18, 2011 IP
  2. gmonlinegames

    gmonlinegames Peon

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    do you mean a pages menu in the footer? Could you explain a bit more? :)
     
    gmonlinegames, Aug 18, 2011 IP
  3. bdkamol

    bdkamol Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    Just go to wordpress official site. there r a lot theme. search here.
     
    bdkamol, Aug 18, 2011 IP
  4. waibhav

    waibhav Peon

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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!
     
    waibhav, Aug 18, 2011 IP
  5. gmonlinegames

    gmonlinegames Peon

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    try looking trough wordpress. org/extend/themes/
     
    gmonlinegames, Aug 19, 2011 IP
  6. fortishospitals

    fortishospitals Peon

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    you just go in word press site's setting and get more themes.
     
    fortishospitals, Aug 19, 2011 IP
  7. Rufas

    Rufas Peon

    Messages:
    27
    Likes Received:
    1
    Best Answers:
    3
    Trophy Points:
    0
    #7
    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
     
    Rufas, Aug 19, 2011 IP
  8. waibhav

    waibhav Peon

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    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!
     
    waibhav, Aug 19, 2011 IP
  9. edwardsjanet

    edwardsjanet Peon

    Messages:
    57
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    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
     
    edwardsjanet, Aug 19, 2011 IP
  10. Rufas

    Rufas Peon

    Messages:
    27
    Likes Received:
    1
    Best Answers:
    3
    Trophy Points:
    0
    #10
    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
     
    Rufas, Aug 19, 2011 IP
  11. waibhav

    waibhav Peon

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    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!
     
    Last edited: Aug 19, 2011
    waibhav, Aug 19, 2011 IP
  12. Rufas

    Rufas Peon

    Messages:
    27
    Likes Received:
    1
    Best Answers:
    3
    Trophy Points:
    0
    #12
    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
     
    Rufas, Aug 20, 2011 IP
  13. Kanonig

    Kanonig Well-Known Member

    Messages:
    343
    Likes Received:
    11
    Best Answers:
    2
    Trophy Points:
    120
    #13
    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.
     
    Kanonig, Aug 20, 2011 IP
  14. sidebreast

    sidebreast Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Look for any theme that supports widgets in the footer. Much easier if you don't know how to code
     
    sidebreast, Aug 22, 2011 IP