Log In · Register

 
 
Closed TopicStart new topic
Can Someone Put Some CSS & PHP Tutorials?
RealArtDesigns
post Jul 1 2009, 12:52 PM
Post #1


Senior Member
***

Group: Member
Posts: 63
Joined: Jun 2009
Member No: 735,129



well i kind of want to learn both

but i want to learn php or css fisrt

and then i am going to learn xhtml (yes it got an x)
 
Mikeplyts
post Jul 1 2009, 02:18 PM
Post #2


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



Try looking here and here.
 
newkidontheblock
post Jul 1 2009, 08:56 PM
Post #3


Offline.
*****

Group: Official Designer
Posts: 609
Joined: Mar 2007
Member No: 507,591



I like learning from videos, if you do too then these might help too.
css-tricks.com
nettuts.com

go to blog.themeforest.net and go through the list of screen-casts and you should find 16 screen-casts on php.
 
HeartOfPandora
post Jul 2 2009, 12:54 AM
Post #4


i like boobies, yes I do. I like boobies - how 'bout you?
*****

Group: Member
Posts: 620
Joined: Jun 2008
Member No: 662,457



You're gonna wanna do that in reverse order, methinks. XHTML first, then CSS, then PHP. In that order, they're easiest to hardest.
 
RealArtDesigns
post Jul 2 2009, 03:43 PM
Post #5


Senior Member
***

Group: Member
Posts: 63
Joined: Jun 2009
Member No: 735,129



css fisrt.....

because of myspace....

and then xhtml and then a litle php.....

i knwo css but i got problems by doing the code...

but i know how to edit it....

dat's my problem....

and thanks pandora...
 
newkidontheblock
post Jul 3 2009, 07:08 AM
Post #6


Offline.
*****

Group: Official Designer
Posts: 609
Joined: Mar 2007
Member No: 507,591



I also thing that you should learn some HTML/XHTML first.
You should learn how the structure of HTML is affected by CSS, how css is called, tagging elements etc.
 
8282designs
post Jul 3 2009, 10:29 PM
Post #7


Newbie
*

Group: Member
Posts: 9
Joined: Jun 2009
Member No: 733,263



usually html first then css and then php..
html and css are similar so once you conquered html, you should be fine with css..
about php.. I'm having a hard time with it, too.. tongue.gif
 
RealArtDesigns
post Jul 4 2009, 12:47 PM
Post #8


Senior Member
***

Group: Member
Posts: 63
Joined: Jun 2009
Member No: 735,129



i now html

[code]
<style>
.hi {display:none}
<div clas:hi>
content
</div>


like dat?
 
synatribe
post Jul 4 2009, 01:43 PM
Post #9


AIDS at RAVES.
******

Group: Official Designer
Posts: 2,386
Joined: Dec 2007
Member No: 598,878



QUOTE(RealArtDesigns @ Jul 4 2009, 12:47 PM) *
i now html



this is CSS
CODE
<style>
.hi {display:none}</style>




this is HTML
CODE
<div class="hi">
content
</div>
 
RealArtDesigns
post Jul 5 2009, 07:12 AM
Post #10


Senior Member
***

Group: Member
Posts: 63
Joined: Jun 2009
Member No: 735,129



yes i know!

but i am trying to remenber the codes... and positions stuff lol

that is my problem with css

i already know html

at least i know how to now...
 
newkidontheblock
post Jul 5 2009, 12:47 PM
Post #11


Offline.
*****

Group: Official Designer
Posts: 609
Joined: Mar 2007
Member No: 507,591



Here is a place where you can learn CSS

Let me help you out with some positioning, there are two main types of positioning.
CODE
position: absolute;
position: relative;


QUOTE(htmldog.com)
- static (default) - Follows the normal flow.
- relative - Relative position that is offset from the initial normal position in the flow.
- absolute - Taken out of the flow and offset according to the containing block.

- fixed - The same as absolute only the fixed box will remain fixed in the viewport and not scroll (or will appear on every printed page). Not supported by IE.


By default if you position absolute it will offset from the default size of the browser window, but if the containing div is position with relative positioning then absolute will offset from it.

example
CODE
<style type="text/css" >
     #parent { position: relative; top: 100px; left: 200px; width: 300px; height: 150px;
                background-color: red; }
     #child { position: absolute; left: 50px; top: 50px;
                width: 100px; height: 50px; background-color: green;
</style>
<div id="parent" >
    <div id="child" >
    
    </div>
</div>

preview

I don't not you understand where I am getting at.

Feel free to contact me for more.
 
RealArtDesigns
post Jul 5 2009, 02:15 PM
Post #12


Senior Member
***

Group: Member
Posts: 63
Joined: Jun 2009
Member No: 735,129



mmm i did't knew you could use "#" as "." for the ID

really is greatfully but you confused me a litle more now that you put these relative thingy's... but is good learning more... and nnow i know more so realy did't confused me.

the thing i want to learn is some php

becvasue i know css is kind of easy... so is kind o f easyy to me to code it..

and i think i am only going to use the position for myspace.. not for a website...

so can somebody show me some php :P
 
newkidontheblock
post Jul 5 2009, 03:33 PM
Post #13


Offline.
*****

Group: Official Designer
Posts: 609
Joined: Mar 2007
Member No: 507,591



QUOTE(RealArtDesigns @ Jul 5 2009, 03:15 PM) *
so can somebody show me some php :P



I can help you out with php, I am pretty advance in it.

I want to know how much of it do you know about php so far..

for example
  • Variables
  • Strings
  • Function
  • etc.

If you like reading the http://php.net/ is a great place to learn php.
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: