Search results

  1. Janja

    How to "freeze" a part of a webpage/frame when scrolling?

    I think, you might be talking about a css style property of fixed? You can position elements as fixed so they never go out of the view. Most widely used for background images if you have a full image as background..
  2. Janja

    Notify website visitors of not paying bills?

    I have had my share of difficulty with customers getting my money. I did have a contract and usually take a 50% deposit with the rest due before upload to the server. When I went to sign the contract, they could only give me $400 instead of the 600. As we went ahead they wanted a paypal shopping...
  3. Janja

    Little div problem

    I think, if you make a footer div tag after your bottom div, before the end of the wrapper div and give it a style of clear:both, it should do the trick.
  4. Janja

    Advice on Flash technique

    Make sure the version is compatible with your flash version you are using, if you are planning to modify the flash file. (Some files will have color options in the xml file but some, you would have to go into the flash library and change it there). I have bought files from them for complicated...
  5. Janja

    Video choices for web/mobile?

    I would upload it to Youtube and then embed the code into the website. It works with iphones and it will help with seo.
  6. Janja

    Back-End Use for Customer

    I recommend wordpress. It's free and easy to use. Your host probably has a one-click install for it. Creating custom themes is a bit trickier. If you send me your design, I can tell you how much it would cost to implement that design into a wordpress theme. Or if you are good with CSS, you can...
  7. Janja

    Ecommerce question

    I recommend wordpress with either a free shopping cart plug-in like eshop or wp-shopping cart. They are free, easy to use and you can find tons of tutorials on youtube and wordpress.org. I used zencart before but I think if it's confusing to me, how is my customer supposed to handle it?
  8. Janja

    Create User Editable Area on Page?

    Go to cushy-cms and sign up. All you have to do is add a class="cushy-cms" to the section you want to make editable and send your customer the info. See Cushy-CMS manual. Easy and free.
  9. Janja

    Advice on Flash technique

    Hi Sara, I'm assuming you mean the flash below the navigation. Check out activeden.net and search for accordion slider. You can buy the module there for cheap and just change the images/links in the xml file. If you know a little bit of html, you will be able to do that.
  10. Janja

    Show Comments in wordpress on a page

    Check out the codex on wordpress.org http://codex.wordpress.org/Function_Reference/wp_list_comments or try this: http://wordpress.org/extend/plugins/bwp-recent-comments/
  11. Janja

    iFrames help please!

    No, this code here below is the frame you are loading the content into. If you want the default frame to show an image, use a .jpeg for the src path. <iframe name="content" src="path to html file/or image" width="320" height="320"> </iframe> These would be the links to load the...
  12. Janja

    <h1>Images</h1> ???? ?? ?? ? ? ?

    I use the image replacement technique for logos and still have it accessible -seo friendly. That's the way to do it in case google webfonts doesn't have what you are looking for. Here's some ways to do that: http://http://css-tricks.com/630-css-image-replacement/
  13. Janja

    Formatting errors of Spry and invisible text

    It look looks like the menu is working now. If you use the black background I would probably make the text color white, a very light green or repeat the blue you have in the footer. When using a black background you need to make sure that the contract is very high because it's harder to read...
  14. Janja

    Formatting errors of Spry and invisible text

    I see several id's named container. That might cause you some problems. How did you create the spry-menu? In dreamweaver? If the container issue isn't it, I would try to change the sizes/padding of the individual menu items. Add a this to your form to make the labels white: <td valign="top"...
  15. Janja

    iFrames help please!

    Name and position the iframe where you want it on the page: <iframe name="content" src="path to html file to show as default" width="320" height="320"> </iframe> Links in navigation: <a href="path to vendors.html" target="content"> Vendors</a>
  16. Janja

    IE9 Center Website Issue

    What John said, but also don't forget to text-align:center for your body tag. Then you can change your text-align to left again in the body_wrapper. Otherwise it still might not work in IE.
  17. Janja

    Why CMS?

    I use Wordpress as cms of my choice. I started building the same site in Joomla and Wordpress to find out which one I liked more. I gave up on Joomla although people say it has so many good features. My point is: if it's so confusing to me, how is my customer going to handle it. I use a full cms...
  18. Janja

    Lightbox2 Won't Work

    You forgot the lightbox part in the href rel code. It goes: rel="lightbox[diamonds]" ;)
  19. Janja

    intro slideshow

    I have used this one before. It has easy documentation, how to implement it. http://galleria.aino.se/ I have used this and removed the navigation by adding a css style of display:none to that part or made the css for the thumbnails : height:0px Use the webdeveloper tool in firefox add-ons or...
  20. Janja

    Adding e-commerce functionality to website

    Hi Ben, are they coding the website in html, wordpress? Usually you would choose a e-commerce solution like Pheno mentioned. If it is in wordpress, you can add the shopping cart functionality later. Technically, you could always have a button in your site linking to the shop in a sub folder so...
Top