Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20

Thread: Fonts

  1. #11
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Quote Originally Posted by Tony Hardy View Post
    Think I'm just going to go with images for the links.
    Fair enough. This is a good way to offer HTML alternatives if you go down the images route; Easy CSS Image Replacement (Phark) - DoMedia remember accessibility at all times!

  2. #12
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Yeah, I was thinking of doing something like that. Cheers Corrosive.

    Now the positioning of the site in different browsers is all over the places :(

  3. #13
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Quote Originally Posted by Tony Hardy View Post
    Now the positioning of the site in different browsers is all over the places :(
    Ouch :-( sounds nasty.

  4. #14
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    There's only two elements to sort out. I just can't get my head around what I should be using for what?

    A Nav Menu, then the Main Content div....I thought absolute for the Nav Menu and Relative for the Main Content...but apparently that's not doing the trick.

  5. #15
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Quote Originally Posted by Tony Hardy View Post
    There's only two elements to sort out. I just can't get my head around what I should be using for what?

    A Nav Menu, then the Main Content div....I thought absolute for the Nav Menu and Relative for the Main Content...but apparently that's not doing the trick.
    Navs should be an unordered list of links;

    Code:
    <ul>
    <li>Item</li>
    <li>Item</li>
    <li>Item</li>
    <li>Item</li>
    </ul>
    use display inline or float them left to get them to line up like soldiers

  6. #16
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Unfortunately, with this Cargo thing, you can get into the HTML that sorts the lists out.
    It dervies them from the tags you assign to the projects. Total nightmare.

    I'll try float/inline soon.

  7. #17
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Code:
    .nav_container.horizontal {                                           /* Enabled via Display Options */
        left: auto;
        padding: 35px 0 60px 35px;
        position: fixed;
        top: auto;
        width: 670px;
        z-index: 25;
    }
    
    
    #content_container {
        left: 370px;
        margin: 0 0 0 0;
        padding: 50px 0 0 35px;
        position: relative;
        width: 705px;
        z-index: 10;
    }
    They're the two main bits of code I have, the elements I'm trying to line up etc.
    Float; left, sticks the navigation to the left side of the browser?

    I need to get them to line up with the header over at Eye For Illustration

  8. #18
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Christ alone knows mate. That's not how I'd put that layout together and I know you are restricted by what you have access to.

  9. #19
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Yeah, I mean I've got the full CSS, but that's it. There's a tiny bit of an HTML editor, but not a lot.
    I really don't know how to get it all to fall inline. I'm on their forums now.

  10. #20
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Quote Originally Posted by Tony Hardy View Post
    Yeah, I mean I've got the full CSS, but that's it. There's a tiny bit of an HTML editor, but not a lot.
    I really don't know how to get it all to fall inline. I'm on their forums now.
    Yeah, all the CSS in the world isn't going to help you if you can't access the HTML. Good luck mate!

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Fonts that have 0 KB value
    By Lord Anchovy in forum Font Forum:
    Replies: 8
    Last Post: 03-16-2012, 12:31 PM
  2. What are these fonts?
    By wczorajdzonson in forum Font Forum:
    Replies: 1
    Last Post: 10-02-2011, 11:17 PM
  3. Name of three fonts!
    By D3ft0ne in forum Font Forum:
    Replies: 0
    Last Post: 07-10-2011, 11:11 AM
  4. Too Many Fonts!
    By CTL Designs in forum Font Forum:
    Replies: 11
    Last Post: 03-10-2011, 05:15 PM
  5. Fonts with history..
    By Offelias in forum Font Forum:
    Replies: 3
    Last Post: 02-22-2011, 01:22 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
  •