+ Reply to Thread
Page 1 of 4 123 ... LastLast
Results 1 to 10 of 33

Thread: CSS Trouble...

  1. #1
    vrufusx65v's Avatar
    vrufusx65v is offline x10Hosting Member vrufusx65v is an unknown quantity at this point
    Join Date
    Aug 2009
    Location
    Dublin, Ireland
    Posts
    74

    Question CSS Trouble...

    I have made a webpage in Photoshop and now im having issues converting it to CSS and XHTML with a little but a jquery, javascript, etc. I have been going to net.tuts+ for a while now and i still can't get my page to be flawless and filled with life like they can. Would anyone know of some good tutorials for basically creating a CSS/XHTML page from photoshop? [Preferably a video tutorial]

    here's a pic of the site for review purposes...comments and criticism are happily notified...
    Attached Thumbnails Attached Thumbnails CSS Trouble...-site-template-paint.jpg  

  2. #2
    elion is offline x10Hosting Member elion is an unknown quantity at this point
    Join Date
    Mar 2010
    Posts
    2

    Re: CSS Trouble...

    Quote Originally Posted by vrufusx65v View Post
    I have made a webpage in Photoshop and now im having issues converting it to CSS and XHTML with a little but a jquery, javascript, etc. I have been going to net.tuts+ for a while now and i still can't get my page to be flawless and filled with life like they can. Would anyone know of some good tutorials for basically creating a CSS/XHTML page from photoshop? [Preferably a video tutorial]

    here's a pic of the site for review purposes...comments and criticism are happily notified...
    it's too difficult.

  3. #3
    mattura's Avatar
    mattura is offline x10 Elder mattura is an unknown quantity at this point
    Join Date
    Oct 2007
    Posts
    563

    Re: CSS Trouble...

    go for a few css tutorials first, then you'll understand what you can do with a bit of style.
    Looks pretty much possible to me, you must see your page as either a table or as floating <div>s
    Look up css 'float' and try playing around with 'margin', 'padding', 'border' and 'background'

    If this is too hard, you could perhaps do it in flash...it would look more slick and be easier to convert from photoshop.
    ----
    Life is a game. The conception is terrible but the graphics are amazing!
    matt.elementfx.com

  4. #4
    vrufusx65v's Avatar
    vrufusx65v is offline x10Hosting Member vrufusx65v is an unknown quantity at this point
    Join Date
    Aug 2009
    Location
    Dublin, Ireland
    Posts
    74

    Re: CSS Trouble...

    Quote Originally Posted by mattura View Post
    go for a few css tutorials first, then you'll understand what you can do with a bit of style.
    Looks pretty much possible to me, you must see your page as either a table or as floating <div>s
    Look up css 'float' and try playing around with 'margin', 'padding', 'border' and 'background'

    If this is too hard, you could perhaps do it in flash...it would look more slick and be easier to convert from photoshop.
    Thanks, that really does help...

    I have tried using floating DIVs before but i never truly understood them...

  5. #5
    as4s1n's Avatar
    as4s1n is offline x10 Sophmore as4s1n is an unknown quantity at this point
    Join Date
    Apr 2009
    Location
    Washington State
    Posts
    174

    Re: CSS Trouble...

    What is it you do not understand?
    There is no such thing as a "stupid question," there are only "stupid people" who don't ask them.

  6. #6
    misson is offline x10 Spammer misson is a jewel in the rough
    Join Date
    Mar 2008
    Location
    Libertatia
    Posts
    2,506

    Re: CSS Trouble...

    Quote Originally Posted by vrufusx65v View Post
    I have tried using floating DIVs before but i never truly understood them...
    The thread "CSS Issue" includes links to pages describing floats.
    Be sure to read all pages linked in this post; they have further information that should prove useful. When asking for help, make sure you follow Eric Raymond's and Jon Skeet's guidelines for prompt, accurate responses. Please answer any questions I ask; they're not rhetorical (probably). Any posted code is intended as illustrative example, rather than a solution to your problem to be copied without alteration. Study it to learn how to write your own solution.
    Misson, not Mission.

  7. #7
    cybrax's Avatar
    cybrax is offline x10 Elder cybrax is on a distinguished road
    Join Date
    Aug 2009
    Location
    UK
    Posts
    699

    Re: CSS Trouble...

    Design is 'do-able' it's a basic two colum layout with header & footer go visit Dynamicdrive.com for a bare bones layout and see how it is done.

    OR put the design to one side and just start with a single div on screen and play with the css, when you have the hang of it.. add a second div and so on.

    Down and dirty content manager for the Q&A and News - http://www.cybrax.co.uk/a4_site/default.php
    Its flat file storage not MSQL with a WYSIWYG upload form attached, very basic but versatile. (sorry about the large file size, still tinkering and a lot of junk in the folder)

    Dynamic drive has some nice AJAX for displaying remote RSS feeds and a pagination javascipt that could work for the top news section, Yahoo pipes may also be useful for feeds.

    The search box is bit more tricky though there are a few free PHP site search scripts out there or you might be able to alter a Google custom search box.

    PS: the AJAX chat box is not allowed on x10 servers
    Last edited by cybrax; 04-14-2010 at 07:06 PM. Reason: ammendum
    The code must flow.
    Project 157: Latest UK Jobs direct to your mobile phone
    New Domain under construction: Lovelogic.net
    home for some new projects that we can't keep here ;)


  8. #8
    vrufusx65v's Avatar
    vrufusx65v is offline x10Hosting Member vrufusx65v is an unknown quantity at this point
    Join Date
    Aug 2009
    Location
    Dublin, Ireland
    Posts
    74

    Re: CSS Trouble...

    *@cybrax*

    That helps a whole lot, thank you very much.

    @everyone

    I was just thinking [before i looked at cybrax's post] that i could start off with just a big table with smaller tables in it and then convert them to DIVs and see what would happen...

  9. #9
    vrufusx65v's Avatar
    vrufusx65v is offline x10Hosting Member vrufusx65v is an unknown quantity at this point
    Join Date
    Aug 2009
    Location
    Dublin, Ireland
    Posts
    74

    Re: CSS Trouble...

    Little side question as well:

    how do i maintain the fonts on the page so they look just like the picture?

  10. #10
    as4s1n's Avatar
    as4s1n is offline x10 Sophmore as4s1n is an unknown quantity at this point
    Join Date
    Apr 2009
    Location
    Washington State
    Posts
    174

    Re: CSS Trouble...

    You could do a table layout but that is bad practice. It may be possible with a bunch of <div>s. As for your second question, are you asking which font face or how to get them all to look the same?

    If it's the latter:
    Code:
    /* CSS page */
    body
    {
    /* code above */
    font-family: which-font-you-choose, backup-font;
    }
    There is no such thing as a "stupid question," there are only "stupid people" who don't ask them.

+ Reply to Thread
Page 1 of 4 123 ... LastLast

Similar Threads

  1. trouble
    By wwlinsist in forum Free Hosting
    Replies: 2
    Last Post: 10-07-2009, 11:48 AM
  2. JRE trouble
    By ichwar in forum Computers & Technology
    Replies: 3
    Last Post: 07-23-2009, 10:08 PM
  3. CSS trouble
    By xadrieth in forum Programming Help
    Replies: 2
    Last Post: 05-26-2009, 07:49 PM
  4. Trouble with cgi-bin.
    By nasaman in forum Free Hosting
    Replies: 2
    Last Post: 02-05-2008, 06:06 PM
  5. Trouble with my RAM
    By callumacrae in forum Computers & Technology
    Replies: 11
    Last Post: 01-21-2008, 05:55 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers