Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

collie

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    collie reacted to kree8or in margin left and right help(overlapping)   
    I haven't looked at your page, but could you put the items in a <ul> (each portfolio piece in its on <li>)?
  2. Like
    collie reacted to mteam in margin left and right help(overlapping)   
    lol I did say this when he msg'd me
  3. Like
    collie reacted to mteam in css help positioning boxes   
    Try using a list instead of paragrapphs and then add a float rule
     

    <ul class="portBtn"> <li>CSS</li> <li>HTML</li> <li>PHP</li> <li>photoshop</li> </ul>
     
     
     

    .portBtn li { /*removed diplay:inline*/ font-size: 10pt; font-family: georgia; font-weight: bold; color: white; text-transform: uppercase; text-shadow: 2px 2px 2px black; background-color: #0E7FF4; padding: 10px 10px 10px 10px; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px; -moz-box-shadow: 5px 5px 2px #232323; -webkit-box-shadow: 5px 5px 2px #232323; box-shadow: 5px 5px 2px #232323; margin: 10px 5px;/*added margin*/ float: left;/*added float^/ }
  4. Like
    collie reacted to ELITE in twitter jquery problem   
    thanks i will take it down once you have it working
  5. Like
    collie reacted to Synjyn in Wordpress posts on different pages   
    Take a look at a plugin I wrote. It might suit your needs.
     
    http://wordpress.org/extend/plugins/posts-for-page/
  6. Like
    collie reacted to Renaissance-Design in quitting smoking..   
    Get through a lot of chewed pens, though - trust me, I know what I'm talking about - I've given up three times. Patches are the best solution. Stick one over each eye and you can't find your fags.
  7. Like
    collie reacted to zed in Surround sound   
    http://www.richersounds.com/products/hi-fi-separates/speakers/speaker-packages#1
     
    You can get wireless speakers BUT they are still wired. The connection from the front of the room will be wireless for sound but one of the rears will be powered, for the receiver, and then you need to cable to the other rear speaker. This can make wiring even more of a chore than having a traditional wired setup.
     
    You could look at a good soundbar if you don't want wires all over the place but it will be a compromise however good they are.
     
    The Pioneer setup above at £249 is likely to be good or maybe the Yamaha at £179 but with all these things go and have a listen to get an idea of how they sound to you.
     
    Also check http://www.avforums.com/forums/ for user reviews and more ideas
  8. Like
    collie reacted to Leonvv in contact form problems   
    It checks for the form element with a name "subject".
     

    !isset($_POST['subject']
     
     
    But in your form there isn't a input element with a name "subject".
    So it will return true and run the error code.
  9. Like
    collie reacted to Pete Prosper in wrapper and container heights   
    It's because of this code right here:
     
    #right-content {
    width: 700px;
    height: 400px;
    float: right;
    }
     
    The simple way is to get rid of "height," and it will auto expand.
     
    But... if you're trying to specify a minimum height for your container, use "min-height: 400px" instead. This way, your container will always be a minimum of 400px but will expand based on content if necessary. However, if you do this, take a look at the following link.
     
    http://reignwaterdesigns.com/ad/tidbits/hacks/minimum_height_in_css.shtml
     
    So your resulting code for a minimum height that functions in most browsers should look like this:
     
    #right-content {
    width: 700px;
    min-height: 400px;
    height: auto !important;
    height: 400px;
    float: right;
    }
     
    Kind Regards
     
    PS: Your footer will then be at the bottom after changing this
  10. Like
    collie reacted to MikeChipshop in html video   
    Your not uploading, only embeding.
    Simply add the video pages URL when you're writing the post (if your in HTML writing mode) and it'll do the rest.
  11. Like
    collie got a reaction from wolf125 in White space at top of screen   
    add style=" position:absolute; top: 0px;" inside the start of your table so it would be <table bgcolor="#669933" border="1" cellspacing="5" cellpadding="5" style=" position:absolute; top: 0px;" >, and that should fix it
  12. Like
    collie reacted to Wickham in navigation and footer help   
    Making your own drop down menu can get problems, that's why many people use a pure CSS menu from cssplay
    http://www.cssplay.co.uk/menus/
    and edit it.
     
    Your li and "a" tags for the top level don't have any widths, so they are just using what the text needs, Bikes is a shorter word than Accessories so the drop down underneath is out of position. When this happens you need to add a class for the drop down ul to suit the different li tag above, see below.

    <li><a href="accessories.html">Accessories</a> <ul class="acc"> <li>...........
    This is the CSS styles I used;-

    /** start of navigation **/ #navigation { width:990px; height:22px; float:left; background-color:black; border-top:solid #f40a01 2px; border-bottom:solid #f40a01 2px; } /** start of the navigation ul **/ .nav ul{ margin-top:0px; list-style-type: none; } .nav li { display:inline; list-style:none; float:left; position:relative; } .nav ul li a { font-size:14pt; text-decoration:none; text-align: left; font-family:"arial"; display:block; color:#f9ff11; height:24px; margin-left:40px; } .nav ul li a:hover { color:#007ee9; } .nav ul ul { position: absolute; margin-top: 20px; visibility:hidden; top:2px; text-align:left; width:118px; /*was 120px;*/ } .nav ul ul.acc /*added style*/ { position: absolute; margin-left: 15px; visibility:hidden; top:2px; text-align:left; width:160px; } .nav ul ul li a { font-size:10pt; text-decoration:none; text-align: center; font-family:"arial"; display:block; color:white; height:25px; } .nav ul ul.acc li a /*added style*/ { text-align: left; margin-left: 2px; } .nav ul li:hover ul { visibility:visible; display:inline-block; position:absolute; background-color:black; -webkit-border-top-left-radius: 5px; -moz-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-top-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } /** start of new nav menu **/ /*.nav>ul>li { outline: 1px solid red; } deleted*/
    I've marked the revised and added styles. I deleted the outline as it duplicated the top level borders and outline is outside a border so it looked odd.
    I hope that helps. It's still not perfect.
  13. Like
    collie reacted to sash_oo7 in best way to do multipul pages,   
    like this?
  14. Like
    collie reacted to user-removed in uni dissertation   
    Well mine was 28000 words so good luck is all I can say.
     
    Surely they give you an idea of structure and content?
     
    I'd imagine you need to write what it is, discuss it's different aspects, debate its advantages and disadvantages, and possibly even conduct investigative research. I would imagine you need to use cloud computing to write about it. You could contact companies that offer it as a service, and people/businesses that use it.
     
    What is the key question here?
     
    What does it do
    How does it do it
    Why do people use it
    How is it promoted and advertised
    What role will it play in the future
    What future does it have
    etc etc
  15. Like
    collie reacted to empek in css layout   
    Hey collie,
     
    I took some time to fix your errors for you.
     
    You can find a fullpage preview here: http://jsfiddle.net/michalkopanski/mMkat/25/embedded/result/'>http://jsfiddle.net/michalkopanski/mMkat/25/embedded/result/
     
    And the code shown here: http://jsfiddle.net/michalkopanski/mMkat/25/
     
    Please pay close attention to the clearfixes I've added to your HTML (top left box).
     
    I also made some comments in the CSS, so check those out as well.
     
    Hope this does the trick.
  16. Like
    collie reacted to mteam in css layout   
    Not sure what your trying to do, I can see the floats aren't being cleared
     
    add overflow:hidden to .deals & .accessories, remove width from #accessPic
  17. Like
    collie reacted to i-am-css in css div background image   
    You'll need another container outside of your current container:
     

    <div id="container-main"> <div id="container"> All your content </div> </div>
     
    CSS:
     

    #container-main{ margin: 0 auto; width: 900px; } #container { background-color: black; background-image: url("images/content2.png"); background-repeat: repeat; border-radius: 5px 5px 5px 5px; box-shadow: 3px 3px 10px #000000; float: left; }
     
    Make sure you put the float: left on #container
     
    no heights needed
  18. Like
    collie reacted to Pedro in css div background image   
    Just add the overflow property to your container div man.
     
    #container {
    overflow: hidden;
    }
     
    You can also add a clearfixhack if you need visible overflow.
  19. Like
    collie reacted to greyhat in css div background image   
    Odd that the 'black' is not working... Cant spot anything obvious.
     
    With the background image property, it normally works better like this:
     

    background-image:url('images/content2.png');
     
    Note the 'single quotes'...
     
    Also, maybe try:
     

    background-position:top;
     
    ??
     
    HTH
  20. Like
    collie reacted to greyhat in css div background image   
    </div<!-- end of header -->
     
    That div tag is missing the closing '>'
     
    Then try the quotes etc again..
     
    HTH
  21. Like
    collie reacted to greyhat in css div background image   
    * also, this is wrong:
     

    margin: 30px auto 10px;
  22. Like
    collie reacted to Bomb in dreamweaver   
    lol@copy-paster!

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.