Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Converting a PSD to CSS

  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 19 total)
  • Author
    Posts
  • #40867

    At the moment I have a great PSD template that i’d like to work with but I’m having some trouble converting it to CSS3.
    I have the background working fine and its 100% scalable however, when i try to create a navigation bar i encounter some problems, I can’t seem to controll the list to where i want,

    I understand there’s little to go on but any suggestions would be appreciated.

    Thanks,

    #114717
    Watson90
    Member

    Hi @AdamHodgson

    Hmm, there could be a wide range of answers here but my guess is that it sounds like you haven’t got your unordered/ordered list or list items in a wrapping div, or even the html5 ‘nav’.

    Maybe provide us with a link with what you’re talking about? Such as the code you’ve done already and maybe we could help you further :)

    #114719
    Watson90
    Member

    +1 on @andy_unleash’s comment

    #114722
    Paulie_D
    Member

    Also…it would be helpful to see what the PSD looks like. I realise that you can’t link a PSD here but you could link in a jpg as long as it’s on a web server.

    #114743

    Thanks guys, sorry for the lack of information, I was at school on my phone.
    You should be able to find the coding here: http://codepen.io/anon/pen/KdbIf
    And an image of the template on my public drop box : http://dl.dropbox.com/u/83767563/Template_Home.jpg

    Hope this is all okay, apologies if my coding is a complete shambles, still learning!

    #114747
    Paulie_D
    Member

    In general, here’s how I would do it…all subject to circumstances.

    http://codepen.io/Paulie-D/pen/bdyjJ

    #114745

    Thanks @Paulie_D this look fine, I’ll try it out now and get back to you guys, thanks :)

    #114742
    Paulie_D
    Member

    It’s not perfect but it will depend on whether you really want to use a lot of images for the navbar. A lot of that can be done with simple colors and gradients.

    If you do want to go the colors/gradients route then an additional ‘wrapping’ div might be necessary as the logo breaks out of the ‘navbar’.

    All doable.

    The real ‘trick’ to learn is about ‘floats’ and how they affect document flow and how to make sure that they work how you want them…

    …oh and the various ways to make sure that they stop doing what they are doing once you are done with them.

    This is a little old but the basics are still the same: https://css-tricks.com/video-screencasts/42-all-about-floats-screencast/

    #114748

    Thanks man this is working great! How do I remove the underline’s and bullets, Is it the text decoration attribute set to none? And if so, Do i apply that to the anchor tag instead of the list?

    #114749

    Scratch that last comment, Solved! :)

    #114750
    Paulie_D
    Member

    Ahh…You should look into a reset css which strips out a lot of that stuff or perhaps ‘normalize.css’ (also google).

    There are a number of resets around starting with the man who ‘created’ the idea Nicolas Meyer

    http://meyerweb.com/eric/tools/css/reset/

    but they are now incorporated into a lot of frameworks including (HTML5 Boilerplate – Well worth a look) and Twitter Bootstrap

    Yes, to remove underlines it’s as simple as

    a {
    text-decoration:none;
    }

    and to remove bullet points

    ul {
    list-style: none;
    }

    #114751
    Paulie_D
    Member
    #114752

    Thanks much appreciated, one more question before I can ‘solve’ this post, On your Pen you added a
    border-left: 2px groove lightgrey;
    which extends the entire length of the nav bar, Is there any way i can set some sort of Height attribute to limit the vertical size of this?

    #114753
    Paulie_D
    Member

    Unfortunately not…at least not yet AFAIK.

    There are a couple of ways to ‘cheat’ this, the simplest being to slice out the image of the groove and use it a background image positioned to the left side of the li.

    The other, which is even more of a ‘cheat’ is to make the actual ‘a’ link only as tall as the ‘groove’ but not as tall as the list item and use the same border technique as I did but this means that there is an area above and below the link which is still part of the list isn’t but isn’t clickable.

    On balance, I’d go with a background image…easier all around.

    BTW, the only reason I used it was to show that you can do a groove without actually using an image. :)

    #114754

    Thanks guys, Case closed! Been very helpful easy to understand, great to see just how friendly the internet community can be.

    I’ll keep you updated with how everything unfolds if you want? :)

Viewing 15 posts - 1 through 15 (of 19 total)
  • The forum ‘CSS’ is closed to new topics and replies.