Start Learning Coding PHPLD templates From Today :)

Discussion in 'Directories' started by paidhosting, May 5, 2007.

  1. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #21
    Is there anything specific we need to learn in CSS for phpld coding ?
    I have basic CSS knowledge.
     
    MeetHere, May 6, 2007 IP
  2. balkanboy

    balkanboy Banned

    Messages:
    1,950
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    0
    #22
    No, there isn't.
    If you know css, biggest point in coding phpld is to understand tpl files and to know which part generates which element(s).

    I must say, defult phpld template html code is very amateur. I had to clean up lot of code and still doing it with every template I make.
     
    balkanboy, May 6, 2007 IP
  3. jl255

    jl255 Well-Known Member

    Messages:
    2,762
    Likes Received:
    211
    Best Answers:
    0
    Trophy Points:
    185
    #23
    as i've mentioned, i'm not saying it does not work. I'm just sharing my own experiences and my advice is to avoid it. If it works for you, and u prefer to use it, then by all means go ahead. What i'm sharing is my own ordeal so that others may learn from it and not share the same regrets i have...
     
    jl255, May 6, 2007 IP
  4. Muneeb2Good

    Muneeb2Good Notable Member

    Messages:
    2,591
    Likes Received:
    194
    Best Answers:
    0
    Trophy Points:
    245
    #24
    woww its a very great idea.

    thanks for sharing..
     
    Muneeb2Good, May 6, 2007 IP
  5. balkanboy

    balkanboy Banned

    Messages:
    1,950
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    0
    #25
    In your code you have this:
    <ul><div id="linkstop"><li>
    HTML:
    and should be like this:
    <div id="linkstop"><ul><li>
    HTML:
    Than add to your css:
    #linkstop {
    text-align: center;
    }
    HTML:
    and
    #linkstop ul {
    margin-right: auto
    margin-left: auto
    }
    
    HTML:
    This should solve your problem and work in both IE and FF and every other browser.
     
    balkanboy, May 6, 2007 IP