Everything posted by DirtyLilFreak
-
Fixed header trouble.
OMG guys thank you so much z-index worked like a charm. Thank you markeh and ysuran.
-
Fixed header trouble.
Hey guys I have some trouble with a fixed header. I got it fixed and on the top. But if you visit http://revse.net/temp you will see that the content is going on top of the header. I want the content to go below the header. Any suggestion on how I can get this done?
-
Aligning Pictures Inside Container Only?
A screenshot or a link to what you are talking about would be helpful for us to figure out whats wrong.
-
CSS Table
My bad. :/ Well I didnt actually code the whole php, my friend made one table and I taught me how to do the rest. Anyway thankyou every one for your help. Please note I havent updated the site with the fixed code yet. Thankyou sooo much WDF.co.uk xD
-
CSS Table
so it will be basic php code like this: <?php my code here ?>
-
CSS Table
Ok sorry for the double post but I got it fixed I removed this code echo "<br/>"; Thankyou for your help zed.
-
CSS Table
Here is the php code which I use to collect the data. <?php include("db.php"); if (!$con) { die('Could not connect: ' . mysql_error()); } $query = "SELECT * FROM playerinfo ORDER BY money DESC "; $result = mysql_query($query); echo "<table border='0'>"; echo "<thead><tr><th>Name</th><th>Money</th><th>Kills</th><th>Deaths</th><th>Score</th></tr>"; while($row = mysql_fetch_array($result)) { echo "<tr><td>"; echo $row['user']; echo "</td><td>"; echo $row['money']; echo "</td><td>"; echo $row['kills']; echo "</td><td>"; echo $row['deaths']; echo "</td><td>"; echo $row['score']; echo "</td></tr>"; echo "<br/>"; } echo "</thead></table>"; ?> Can you let me know what I am doing wrong here?
-
CSS Table
If I am pulling blank rows shouldnt I atleast see a table with no data? :/ And how can I fix this blank rows?
-
CSS Table
Hey Guys, I have a problem with styling my tables using CSS. As you can see here http://stats.shiftgaming.com there is a huge space before the data starts. And if I add margin-top:-xxx% it may look fine for me but other people see the tables to high. I badly want to remove that, is there anyway I can?. I really want an solution for this. I hope some one can help me with this as soon as possible. Regards, DirtyLilFreak.
-
CSS problem
try adding add ".." before the slash in the image. like this: background-image:url(../cardboardBG.jpg); Maybe it isnt reading the image file.
-
CSS text align help
Ok after I applied your css style it came inline with each other. But I didnt understand the code properly. if you can explain the code a little bit more I would appreciate it.
-
CSS text align help
Can you please explain a little bit more about the <ul> element and how I can apply this on my site. pls because I dont seem to understand it :/ I have tried it before like this <div class="menuholder"> <ul> <li>Home</li> <li>Forums</li> </ul> </div> It comes like a list with bullet points :/
-
CSS text align help
I started workin on a site today. And in the menu I cant seem to exact center text. :/ here is a demo gamerffs.com/test I uploaded the site there for you guys to see. pls tell me what I am doing wrong here. I tried padding but it moves the box. I want the box to stay the same size. Regards, DirtyLilFreak
-
Moving Div's
Sorry I dont have a link at the moment. What I meant by Sitting there is the div box is where I already added it to. on the left handside top corner. It doesnt move when I add top and left to the css.
-
Moving Div's
Yeh I knw about the curly brackets I was just doing a demo to show how I use top and left I will try it out and let u guys knw the result Edit I tried it but no luck: code if wat I have in css it this #bodycontent { position: absolute; height: 100px; width: 100px; top: 25px; left: 50px; } It still sits there :/
-
Moving Div's
Hey guys once again I need some help. I cant seem to move div tags where I want them to be. I used this code (i.e #body width: 100px; height: 100px; top: 25px; left: 50px; this is just an example of me using the top and left codes. Are they correct? coz nothing seems to happen to the div it just sits there. Pls help me out guys. Really appreciate it
-
Help with site root and css
It worked xD I removed the / in front and it worked thanx alot guys xD
-
Help with site root and css
Hey there every one. I have this problem. I created a webpage using dreamweaver and did a live preview. It appeared correctly but when I previewed in firefox nothing appears. It uses a css style sheet as well. The images links are /images/image.png format and wen I preview only the alternate text appears no pics! This started happening today. I did many web pages before with out any trouble and worked fine. Pls some one help out. thnx in advance.