Jump to content

benjaminmorgan

Member
  • Posts

    226
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by benjaminmorgan

  1. Is it possible to do with out cutting off the image?
  2. I want to create this kind of effect with some sites. I can't figure out how to do it and I can't seem to find anything on it. Maybe I am just looking for the wrong thing. This is the effect I am wishing to achieve and maybe you can help me figure out how to achieve it.
  3. They don't seem to jump. I don't know though.
  4. You could leave the background in the CSS and just add a link in the html in that div or whatever and make it the same size as the div displayed block;
  5. I ended up using Fast Secure Contact Form for the website but I will play around with 123ContactForm and see which one i like better.
  6. Happy New Year! Well 30 more minutes for me
  7. Nevermind, I fixed it with a <br style="clear: both;" /> before the closing div class="content tag and before the closing div class="footer tag.
  8. Here is what I am designing. http://sleek.comoj.com/index.php The browser that this is going wrong in is Firefox.Between the header and content there is no gap. When it goes from content to footer there is a gap in Fx. Now for my next problem. I have the navigation links. Home | Services etc. Then I have a div with a border underneath. Then I set up a 3 column layout. It is not working at all. It will show in 3 columns but it will be white instead of the background of the footer. I don't know why. I am not sure if I am missing a clear: both somewhere or not. The text is there the text is just white and you have to highlight over it to see it. Please help me find a solution. Thanks!
  9. Thanks I will check it out. Are you able to design it how you like?
  10. Is there any contact form plugins that you like? I want to be able to design it though. Most of the plugins I have tried go crazy when I try to style them. Or would it be easier to just code it up?
  11. I personally like Bluehost.com or Hostgator. Haven't used Bluehost as much even though I seem to get less headaches from them.
  12. <img src="path to file" alt="Text if image doesn't display" />
  13. There are tons of free fonts online such as http://www.1001freefonts.com/or http://www.dafont.com/ . I also have friends that have bought 10,000 commercially licensed for $19.95 at http://www.ultimatefontdownload.com/index.htm?hop=brentpaine
  14. Haha Merry Christmas to you too and have a good one
  15. I wanted to be able to display only the 2nd level of a navigation menu on the sidebar as the client wished but I found this not easy. I think I should be able to do this with posts if I can get them going in ASC order by date created. here is my sidebar code. If there is anything wrong please tell me. Thanks!!! <div class="sidebar"> <?php if(trim(wp_title('', false))=="Commercial") { ?> <ul class="comside"> <?php ?> </ul> <?php }?> <ul class="comside"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php $recent_posts = wp_get_recent_posts(); foreach($recent_posts as $recent){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a></li> '; }?> <?php endwhile; ?> <?php endif; ?> </ul> </div>
  16. Here is the source code. The level that shows Burglar Alarm is the only one I want to show in the sidebar. I will add more pages to that level later once i get this done and figured out. <div class="navigationallink"> <ul id="sidenav"> <li class="pagenav"><h2 class="displaynone">Pages</h2><ul><li class="page_item page-item-4"><a href="http://localhost/wordpresse/">About Us</a></li> <li class="page_item page-item-7 current_page_item"><a href="http://localhost/wordpresse/commercial/">Commercial</a> <ul class='children'> <li class="page_item page-item-15"><a href="http://localhost/wordpresse/commercial/burglar-alarm/">Burglar Alarm</a></li> </ul> </li> <li class="page_item page-item-9"><a href="http://localhost/wordpresse/residential/">Residential</a></li> <li class="page_item page-item-11"><a href="http://localhost/wordpresse/contact-us/">Contact Us</a></li> </ul></li> </ul> </div>
  17. I am building a wordpress site. I have a horizontal navigation with 4 links. Under the commercial page I have 4 sub pages. The client doesn't want it added in as a hover. he wants it on the side of the commercial page. How can I just display the second level of links? In the horizontal nav I have a different div class and on the sidebar i have a different div class. If you could help me out that would be great. /* SIDE LEVEL 2 NAVIGATION */ .navigationallink .pagenav ul li { display: none; } .navigationallink .pagenav ul li ul { width: 200px; border-radius: 25px; float: left; margin: 0; display: block; padding: 0; padding-top: 0px; list-style: none; visibility: visible; } .navigationallink .pagenav ul li ul li { list-style-type: none; color: #FFFFFF; display:block; width: 200px; float: left; visibility: visible; } .navigationallink .pagenav ul li ul li a { width: 200px; background: url('images/gradback.gif'); display: inline-block; padding: 0px; margin: 0px; color: yellow; font-weight: bold; text-align: center; text-decoration: none; height: 30px; line-height: 30px; } .navigationallink .pagenav ul li ul li a:hover { background: url('images/hoverstate.gif'); } /* END NAVIGATION */
  18. Are you using float: left; on the cowboy thing and float: right; on the flag? Also make sure u add a width to it.
  19. Nevermind. I fixed it with adding , false to the wp_title. Not sure what parameter that is though.
  20. I tried doing an If statement. It didn't work. For some reason the only thing it is putting on the sidebar is the word Commercial <?php if(trim(wp_title(''))=="Commercial") { ?> <ul class="comside"> <?php $recent_posts = wp_get_recent_posts(); foreach($recent_posts as $recent){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a></li> '; } ?> </ul> <?php }?>
  21. I have a main nav horizontal with the wp_list_pages('depth=1&title_li=<h2 class="displaynone">Pages</h2>); On the commercial page (on main navigation) I need to have a vertical sidebar only on this page. I don't know how to make it where he can add pages to it like that. So far when it creates a page it adds it to the main nav bar.
  22. Glad I could help. I had the same problem a few days ago. Turns out a lot of other people had the same problem on google.
  23. Glad I could help. I had the same problem a few days ago. Turns out a lot of other people had the same problem on google.
  24. You probably don't want to give a template (unless it is original one you made) to clients if they are paying for your service (unless they don't mind or ask for it). You can create a template for the public if you want. There are plenty out there.
×
×
  • Create New...