Forums

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

Home Forums CSS Putting It Together

  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 33 total)
  • Author
    Posts
  • #27268
    TheN00b
    Participant

    Hi Guys

    I’m new here :)

    I am working on a website, following a tutorial from a GFX site I have created my website in Photoshop, and now I want to move it over to Dreamweaver and actually code it.

    Here is how I have gotten my images for the site:

    http://i48.tinypic.com/mbpjqd.png

    I have made a start on the process (please let me know what you think), but also I have become stuck. I can not get the navigation buttons where I want them. My buttons are big because I have got them with the Shadows !

    I would greatly appreciate any help with this.

    Thank You.

    #68394
    TheN00b
    Participant

    Thank You Jamy .. looking much better now :)

    But why aren’t my button texts showing ? also how do I get the buttons closer together ?

    Thank You

    #68409
    darren
    Member

    Fot the button text not showing up you need to take the span class off. a .alt {display:none;} tells the browser not display links with the class of alt this should fix that problem. to get your buttons closer together i would mess around with margins on your li.

    #68430
    TheN00b
    Participant

    Thank You Darren :)

    I do not understand why the text is so high up ! I would have thought they would appear in the buttons !

    Can you please tell me how I’d sort that out.

    Thank You.

    #68432
    darren
    Member
    "TheN00b" wrote:
    Thank You Darren :)

    I do not understand why the text is so high up ! I would have thought they would appear in the buttons !

    Can you please tell me how I’d sort that out.

    Thank You.

    Take the class of alt right off the link that might be messing things up, but if not put it back on then use padding to position the text in the buttons
    something like:

    Code:
    .alt {
    padding-top:-75px;
    padding-right:40px

    and play around with those number until that are correct. But try taking the alt class off first.

    #68433
    TheN00b
    Participant

    Thank You So Much Darren.

    It is done ! The Navigation is DONE, I’m so Happy :lol:

    Now moving down. Why is the text in the CTop (Content Top) sat in the middle ? I have told CSS to left align the content of that div tag !!

    #68435
    darren
    Member

    Im not sure why it woln’t align left, You could try

    Code:
    #ctop h1{
    margin-left:-100px;
    }

    Then when you have the text on the bottom of it set the width in the <p></p> tag, because ctop width is alot bigger than the text area,

    Code:
    #ctop p{
    width:800px;
    margin:30px 10px 10px 30px;

    Adjust the margins to where its perfect.
    Hope this helps

    #68436
    TheN00b
    Participant

    Hi Darren

    I just tried that, it did not work :( I think I know what the problem is, but I do not know how to fix it. Check this out, this is what I get when I look at the thing with FireBug. It is the Box for the logo that is not allowing the text to get to the left.

    [img]http://i47.tinypic.com/29dwkqq.jpg[/img]

    The Question is how do I make the text go through the logo box ?

    Thanks

    #68439
    darren
    Member

    Alright so I got this for ya, use a bg image for the logo.

    Code:
    #logo {
    float: left;
    background-image:url(‘http://www.kurdwd.com/_images/logo_03.png&#8217;);
    background-repeat:no-repeat;
    height: 199px; width: 330px;
    margin-left: 65px;
    margin-top: 25px;

    and put the text in a new div

    Code:
    #ctext{
    width:800px;
    float:left;
    margin-top:-30px;
    margin-left:80px;
    }

    so your index would look like this:

    #68443
    TheN00b
    Participant

    Hi

    That did not work, the logo is gone too :cry:

    #68445
    darren
    Member

    Oh I dont know whats up, ill upload it on my server and you can copy the code straight from there,
    http://www.webbeginner.net/help
    Just look at the source and css file and copy it

    #68446
    TheN00b
    Participant

    Hi Darren

    The one on your server is not showing me any logo either :shock:

    I cleared my browser cache and restarted .. and it is still the same .. No Logo !! How weird !!

    #68447
    darren
    Member

    Ok I didn’t check it with IE, you much be using it. I think it’s something to do with the background image not being able to be used.
    Im pretty new at web design too, only a couple of months now. So my suggestion would be, bring it back to a img and have a little more space from the header to the text. But just copy like before, it was tested in ie
    http://www.webbeginner.net/help

    #68460
    TheN00b
    Participant

    Thank You So Much Darren.

    Looking better huh ? :D

    Moving down the page to work on cmid (content middle) section :lol:

    #68488
    darren
    Member

    Yep looks a lot better now, did you figure out what your going to do with the background yet?

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