KamakuraNeko wrote:Were do i get css?
Kariudo wrote:oh, didn't see that.
Actually, I do. It's done with css
I've written the specifics HERE
KamakuraNeko wrote:Were do i get css?
Kariudo wrote:oh, didn't see that.
Actually, I do. It's done with css
I've written the specifics HERE
Actually, the correct answer is you don't GET CSS anywhere... It's installed on the web server. You USE it - examples are at that link.Enigma wrote:KamakuraNeko wrote:Were do i get css?Kariudo wrote:oh, didn't see that.
Actually, I do. It's done with css
I've written the specifics HERE
Kariudo wrote:<a> tags and css my friend (works in profile and video information page)
as an example...here's some code from my profile pageCode: Select all
<a style="display:block; background:url('url to your image here, yes keep the single quotes'); height:[height of image in px]px; width:[same thing as height]px; background-repeat:no-repeat;"></a>
everything inside of style is css. If you want to learn more, I found this site to be extremely helpfulCode: Select all
<a style="display:block; height:100px; width:100px; background:url('http://img64.imageshack.us/img64/4677/smalllafielissmallmw5.jpg'); background-repeat:no-repeat;">
Hope this helpsKariudo wrote:In addition to my last post...
You'll probably have to change the position of the image you put into your profile. To do that, put the following somewhere into the css:more code from my profileCode: Select all
position:relative; top:[x]px; left:[y]px
(margin-bottom is just for aesthetics, makes it so that there is no gap between whatever was before the pic and what comes next)Code: Select all
<a style="display:block; position:relative; background:url('http://img369.imageshack.us/img369/2/haseoup1.png'); width:215px; height:300px; left:300px; top:-20px; margin-bottom:-300px;"></a>
CSS is client-side actually, built into the browsers themselves.BasharOfTheAges wrote:Actually, the correct answer is you don't GET CSS anywhere... It's installed on the web server. You USE it - examples are at that link.
Code: Select all
<a style="display:block; background:url('http://img369.imageshack.us/img369/2/haseoup1.png'); width:215px; height:300px; left:300px;"></a>
"Made entirely with anime openings (and one ending). And no, i don't know why i called it "Blueberry"
Code: Select all
<a style="display:block; background:url('url to your image here, yes keep the single quotes'); height:[height of image in px]px; width:[same thing as height]px; background-repeat:no-repeat;"></a>
Code: Select all
<a style="display:block; background:url('http://img369.imageshack.us/img369/2/haseoup1.png'); height:300px; width:215px; background-repeat:no-repeat;"></a>