Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 8 users online :: 0 Registered, 0 Hidden and 8 Guests :: 2 Bots
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
Chit Chat Thread
Page 2 of 33 • Share
Page 2 of 33 • 1, 2, 3 ... 17 ... 33
- Mr.Panos
- Gender :
Age : 38
Posts : 29
Points : 4074
Reputation : 10
Location : Athens, Greece
Language : Greek, English, French
Browser : Forum Version :
First topic message reminder :
What's up guys?
What's up guys?
Okay, don't worry about testing javascript on your mobile browser. I decided to go back to my roots and do this strictly with CSS.
I've tested on the crappiest mobile browser I could get my hands on(PSP) and it displayed Online/Offline correctly.
So far so good.
I've tested on the crappiest mobile browser I could get my hands on(PSP) and it displayed Online/Offline correctly.
So far so good.
Works 100% on phpbb3 and invision since they both have the online class for the posts. Maybe I'll write a little tuto up for that since its simple and I like it more than the online images.
I really do not know why people still use phpBB 2 as it is way out of date. Invision and phpBB 3 are the newest versions, especially phpBB 3. Most browsers will not support the codes for phpBB 2.Ange Tuteur wrote:Works 100% on phpbb3 and invision since they both have the online class for the posts. Maybe I'll write a little tuto up for that since its simple and I like it more than the online images.
Exactlyz!!
I am actually trying to renovate a forum (its a biig one) which hasn't been really touched from administrative sides for a loooong time (yes THAT long).. Its so hard to convince the only admin there to change from phpbb2 to phpbb3.. -_- He keeps on saying me no need to change theme but eh..damn..
I'll work on the second theme at the moment :/
I am actually trying to renovate a forum (its a biig one) which hasn't been really touched from administrative sides for a loooong time (yes THAT long).. Its so hard to convince the only admin there to change from phpbb2 to phpbb3.. -_- He keeps on saying me no need to change theme but eh..damn..
I'll work on the second theme at the moment :/
SLGray wrote:I really do not know why people still use phpBB 2 as it is way out of date. Invision and phpBB 3 are the newest versions, especially phpBB 3. Most browsers will not support the codes for phpBB 2.
I plan on gutting phpbb2 when I'm finished with my phpbb3 theme.
For my signature it is a bbcode table with some style. I have a 2px border to the right and some padding to the right. Its width is 100% so it spans the entire post, this allows me to align the text to the right.
Here's some quick info on padding and margin :
Padding : is the spacing inside of an element
Margin : is the spacing outside of an element
Without padding the text is at the absolute corners of the element.
Without margin both elements have no space between each other.
<div style="display:inline-block;background:#0C0;width:100px;height:100px;">No padding,
No margin</div><div style="display:inline-block;background:#0CC;width:100px;height:100px;">No padding,
No margin</div>
With padding the text no longer touches the corners of the element.
<div style="display:inline-block;padding:5px;background:#0C0;width:100px;height:100px;">5px padding,
No margin</div><div style="display:inline-block;padding:5px;background:#0CC;width:100px;height:100px;">5px padding,
No margin</div>
With margin the elements no longer touch each other.
<div style="display:inline-block;margin:2px;padding:5px;background:#0C0;width:100px;height:100px;">5px padding,
2px margin</div><div style="display:inline-block;margin:2px;padding:5px;background:#0CC;width:100px;height:100px;">5px padding,
2px margin</div>
Here's some quick info on padding and margin :
Padding : is the spacing inside of an element
Margin : is the spacing outside of an element
Without padding the text is at the absolute corners of the element.
Without margin both elements have no space between each other.
<div style="display:inline-block;background:#0C0;width:100px;height:100px;">No padding,
No margin</div><div style="display:inline-block;background:#0CC;width:100px;height:100px;">No padding,
No margin</div>
With padding the text no longer touches the corners of the element.
<div style="display:inline-block;padding:5px;background:#0C0;width:100px;height:100px;">5px padding,
No margin</div><div style="display:inline-block;padding:5px;background:#0CC;width:100px;height:100px;">5px padding,
No margin</div>
With margin the elements no longer touch each other.
<div style="display:inline-block;margin:2px;padding:5px;background:#0C0;width:100px;height:100px;">5px padding,
2px margin</div><div style="display:inline-block;margin:2px;padding:5px;background:#0CC;width:100px;height:100px;">5px padding,
2px margin</div>
Yes, margin is usually useful for multiple elements, or if the corners are too close to the element it is inside of, but you can usually use padding for that.
Sounds great.. I'll start experimenting with that to come up with a cool new signature
also, we cant style it for 'hover' unless we have a class with its :hover in css of that forum right? Or is there any way?
Stacking up to right with a border-right is your way now, I'll make my own style
also, we cant style it for 'hover' unless we have a class with its :hover in css of that forum right? Or is there any way?
Stacking up to right with a border-right is your way now, I'll make my own style
If the forum you're on has HTML enabled you should be able to create an inline style sheet in your signature.
Example :
Example :
- Code:
<style>.myElem { color:red; }
.myElem:hover { color:blue; }</style>
I know the lazy feel
Yep, I made my ava. Green 101 in the background, and couple of feathered circles that erase around the edges to give it that softness look.
Yep, I made my ava. Green 101 in the background, and couple of feathered circles that erase around the edges to give it that softness look.
Speaking of signatures..I used to play around and make graphic signatures awhile back before I got into coding. I never really had a knack for it though, but I was pretty good when it came to simple designs and stuff. I still use what I remember now and again if I need to use an image for something.
Who needs images when you can make shapes with CSS, though ?
Who needs images when you can make shapes with CSS, though ?
You said it ! |
Ange Tuteur wrote:Speaking of signatures..I used to play around and make graphic signatures awhile back before I got into coding. I never really had a knack for it though, but I was pretty good when it came to simple designs and stuff. I still use what I remember now and again if I need to use an image for something.
Who needs images when you can make shapes with CSS, though ?
You said it !
ahaha oh god XD thats pretty awesome.. I too believe in CSS rather than IMAGES but I suck pretty much right now lol
^^ Yeah, sometimes it can be a headache with older browser support. It just takes time and experimenting to understand how it works, believe me it took awhile and I'm still learning new things ! Practice, practice, practice..keep it up and you'll eventually write styles like you write words.
Keep it up.
Keep it up.
- Sponsored content
Page 2 of 33 • 1, 2, 3 ... 17 ... 33
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 2 of 33
Permissions in this forum:
You cannot reply to topics in this forum