Jump to content

FaT3oYCG

Members
  • Posts

    281
  • Joined

  • Last visited

    Never

Posts posted by FaT3oYCG

  1. Hovering over home makes the corners not rounded on the left.

     

    I still think the background colour is awful for the body.

     

    Orange with blue? choose one or the other? - you don't seem to have acted on this, maybe the text is just blurry?

     

    Just one personal note from me, couldn't you make it 2 column? the two right columns seem as though they should be merged to give the left column more of the page.

     

    CSS: http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.mikeclevertips.com%2F

    XHTML: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.mikeclevertips.com%2F

  2. What up everyone! I have purchased a premium web template and modified the crap out of it because i contains so many bugs.

     

    This begs for the question, Why did you buy it then and if the answer is because you didn't know, Why didn't you get a refund XD.

     

    @ First impression: The body BG colour is horrid.

    The blue for the links is too hars on the white BG.

    Orange with blue? choose one or the other?

    Other than that I like it a lot.

  3. What do you think is the best way to deliver a tutorial to users on the net? I'm swaying between forums, wiki's and blog's etc. I was wondering if you knew of any systems that provide tutorial delivery and how they do that.

  4.  

    Dito,

    Mind if I join you?

    Can save some $$ :P

     

     

    Actually its the photo's that make me want to go...

     

    LOL, maybe when I'm 21 and can drink :), ima keep the infromation for this place in my favy's it has defo interested me, shame the legal drink age in the US is so high :P, I'm from the UK you see :).

  5. 1: Keep it.

    2: Keep it.

    3: Yes - Make the FAQ an index page and split each of those sections into seperate pages, keep the top part on the main FAQ page though but still allow to jump to the specific answers.

     

    p.s. Another observation - Remove the links from the bottom of the page (they are already at the top).

     

    @off topic: I wanna go :P .

  6. yeah, i'm using ie8.

    it looks FUCKED UP

    all the information for users to read is after the end of the page, which is probably not what it looks like on other browsers

    Float it.

    It should also be centered, that'd make me happy

     

    Confirmed and agreed, I tested it in IE8 (messed up) and firefox (appears as you want it to).

     

    I would do some revamping on the colours etc. for example:

    - The videos on the right hand side would benefit from some padding at the top and bottom.

    - The links on the right hand side have too much padding.

    - The links on the left and right would benefit by a "collapse / expand" feature that would allow you to hide or show each of the main items sub items

    - Seems a bit thin width wise to me, this is because of the sidebars.

    - There might be too much content for the main page but this may become less of a problem with a wider width (or removing the right sidebar).

    - Adding a footer may be a good idea to place some of the content in (right sidebar items possibly)

     

    Other than that the thing that you do have right that is good is content and plenty of it, you just need to manage it better.

  7. O.K. which code did you copy and paste? as I stated that the second set of code that I posted works as I have changed it but would preffer to keep the display inline property, if you read the second set of code I use the float left property with the display block property.

     

    Another problem I would point out is that the first set of code still causes the same issue even when the code is on its own meaning it is not a problem with my other CSS and must be something to do with the "Relevant" section of CSS that I posted in the first post.

     

    I would also point out that you informed me of the LoVe HAte rule which I had forgotten about since the last time I was making a web page yet you still did not use that rule in the code that you posted up.

     

    I notice that the code that you posted does not address the issue at hand either and simply informs me how to do something completley different which I was going to do next as I am styling my site completley with css.

     

    Thanks for you efforts to help though, it was appreciated even if I still have the same issue.

     

    Any more suggestions?

  8. O.K. it works like this:

     

    		<div id="top-bar">
    			<ul>
    				<li><a href="#">Item One</a></li>
    				<li><a href="#">Item 2</a></li>
    				<li><a href="#">This is Item Three</a></li>
    				<li><a href="#">Four</a></li>
    				<li><a href="#">This is a long Item 5</a></li>
    			</ul>
    
    			<div class="clear">
    			</div>
    		</div>
    

     

    #top-bar {
    background: #8FD7FF;
    margin: 0 20px 0 20px;
    padding: 5px 10px 5px 10px;
    }
    
    #top-bar ul {
    margin: 0;
    padding: 0;
    list-style:none;
    }
    
    #top-bar ul li {
    float: left;
    }
    
    #top-bar ul li a {
    padding: 5px;
    color: #000000;
    text-decoration:none;
    }
    
    #top-bar ul li a:hover, #top-bar ul li:active a:hover, #top-bar ul li:active a:visited {
    color: #000000;
    background: #AFE3FF;
    }
    
    .clear {
    clear: both;
    }
    

     

    But does anyone know of a less "hacky" way where you use the display inline element or some other method that does not require the clear div?

  9. Hi, I am making a site for myself to hold my CV and relevant information on and I was doing fine until I happened to come accross this problem.

     

    I have made a navigation which uses a list with the inline css property and i cant seem to get rid of some random blank space between the items, I have set all margins and padding to 0 to see if I could find it and I am now confused as I couldn't even locate the problematic section.

     

    I have attatched an image of what I mean, I have placed black lines arround the random blank space and a red arrow pointing to one of the places where it happens (although it happens to all of the items).

     

    Here is the relevant HTML:

                <div id="top-bar">
                    <ul>
                        <li><a href="#">Item One</a></li>
                        <li><a href="#">Item 2</a></li>
                        <li><a href="#">This is Item Three</a></li>
                        <li><a href="#">Four</a></li>
                        <li><a href="#">This is a long Item 5</a></li>
                    </ul>
                </div>
    

     

    This is the CSS for that section:

    #top-bar {
        background: #8FD7FF;
        margin: 0 20px 0 20px;
        padding: 5px 10px 5px 10px;
    }
    
    #top-bar ul {
        list-style:none;
        margin: 0;
        padding: 0;
    }
    
    #top-bar ul li {
        display: inline;
    }
    
    #top-bar ul li a {
        padding: 5px;
        color: #000000;
        text-decoration:none;
    }
    
    #top-bar ul li a:hover, #top-bar ul li:active a:hover, #top-bar ul li:active a:visited {
        color: #000000;
        background: #AFE3FF;
    }
    

     

    Any help is appreciated this is actually driving me nuts now.

     

    Thanks,

     

    Craig.

     

    [attachment deleted by admin]

  10. well, if you incorporated a question table and then added a questionid field to the surveyanswer table then you would be able to have more than one multiple selection question as they would all have different combinations of id's.

     

    for example:

     

    survey 1

    question 1

    answer 1

    answer 2

    answer 3

    answer 4

     

    would be different to

     

    survey 1

    question 2

    answer 1

    answer 2

    answer 3

    answer 4

     

    as you see putting the id's side by side you would get something along the lines of:

     

    111

    112

    113

    114

     

    for the first set and

     

    121

    122

    123

    124

     

    for the second set.

  11. you should have two tables for example using a survey

     

    table: survey

     

    surveyid

    surveyusername

     

    table: surveyanswer

     

    surveyanswerid

    surveyid

    surveyanswervalue

     

    and then in your case the survey answer table would have 75 entries for one survey but they would all have the same surveyid so that they could be related back to the survey that was taken. that is pretty basic but should give you the idea.

     

  12. <?php  
       switch ($parameter) 
       {
          case ('CountryID'):
             if($totalRows_RsSideRatingloop > 0)
             {
                require_once('side-loop-CountryID.php');
             }
             
             break;
          case ('CityID'):
             if($totalRows_RsSideRatingloop > 0)
             {
                require_once('side-loop-CityID.php');
             }
             
             break;
          case ('RegionID'):
             if($totalRows_RsSideRatingloop > 0)
             {
                require_once('side-loop-RegionID.php');
             }
             
             break;
          default:
             echo('empty');
       }
    ?>
    

     

    and i think you will find the php operator for and is &&.

     

    you may also be able to move the $totalRows_RsSideRatingloop > 0 outside of the switch if it will be the same for all of them.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.