WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1I'm a genius? Or am I not? Empty I'm a genius? Or am I not? Fri Jun 18, 2010 7:39 am

ecosystem

ecosystem
Registered Member
Registered Member
Ok, so I had an predicament of worrying that my other admins on my site will mess with my admin panel and screw up the design.
So I wanted them to not have access the Display tab or the left side panels.
Since they are admins, however, I wanted them to have access to other stuff, like groups, and forums, etc.

Sooo, I came up with a slight solution for this.

I actually blocked off parts of the admin panel.

Check it out:
I'm a genius? Or am I not? Onead
I'm a genius? Or am I not? Twof


How did I do it?

  • WebArtz's handy "embed a website into a website" tutorial
  • Absolute positioning with CSS
  • Icons from Iconspedia.com
  • My own creative ideas


I embedded the codes into an HTML page, then linked that to a forum so that my other admins could see it, but I put the real admin panel into a forum that only I can see.

No, this isn't a joke, it isn't photoshopped. It's legit Razz

And, it probably isn't such a great achievement, but I tried my best...

What do you think?

2I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:31 am

Sanket

Sanket
Administrator
Administrator
Nice work, so you just made a new html page with the same layout etc. With additional icons?

http://www.webartzforum.com

3I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 7:12 pm

Fatal Dawn


Registered Member
Registered Member
I think I'm beginning to understand what you did when I look closer...

To me it doesn't look like you are denying them access, but you embed an image - in this case an icon - unto the certain parts of the page to block it.

Okay .. that's creative eco. Wink

4I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:14 pm

ecosystem

ecosystem
Registered Member
Registered Member
Yeah I just embedded the link to the admin panel in an html page, but I had to make the dimensions really large. Like 2500 long x 1000 wide. It's in an iframe.

Then I just added this html above the iframe.
Code:
<div style="position: absolute; top: 123px; left: 166px; height: 35px; width: 81px; background-image: url('LINK TO "X" IMAGE'); background-position: 33px center; background-repeat: no-repeat;"></div>

This one blocks off the display tab and you can put whatever image you want where it says background-image.

And dawn, yeah, that's it.
With this method, you can block off parts without an image though, by defining dimensions for a <div> element.



Last edited by ecosystem on Fri Jun 18, 2010 10:16 pm; edited 1 time in total

5I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:15 pm

ankillien

ankillien
Administrator
Administrator
Hey eco!

Looks like you have came up with something out of the box Wink
But I don't get what exactly you have done? You just put a red 'X' image on the display tab, right? What do you do with the iframes?

6I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:20 pm

ecosystem

ecosystem
Registered Member
Registered Member
Okay, I'll just spill my codes Razz

This is what's in my html page.
Code:
<div style="position: absolute; top: 123px; left: 166px; height: 35px; width: 81px; background-image: url('http://i67.servimg.com/u/f67/14/87/55/48/dialog10.png'); background-position: 33px center; background-repeat: no-repeat;"></div>

<div style="position: absolute; top: 160px; left: 30px; height: 700px; width: 231px; background-image: url('http://i67.servimg.com/u/f67/14/87/55/48/untitl14.png'); background-position: 10px top; background-repeat: no-repeat;"></div>

<iframe src="LINK TO FORUM/admin/index.forum?" style="border: 0" height="2550px" width="990" frameborder="1" scrolling="no"></iframe>

The panel is a bit smaller than the actual one, but it works. Also, I still have to block off the parts where it says "toggle admin interface" and "resize font" because that change the sizes of everything and the block will be out of position.

And you don't even need X images. The div element will block out the areas with the absolute positioning. I just put the X to notify the admins which areas are off limits.

Also note that this only works in the "simple" mode. Advanced is a different story, whereas I believe you can only block off certain tabs. Still effective, though. Wink

7I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:31 pm

ankillien

ankillien
Administrator
Administrator
Great! I get it now Very Happy I can call you a genius Razz

But this will only work if you are using an HTML page, its not possible on actual admin panel Neutral

8I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:40 pm

ecosystem

ecosystem
Registered Member
Registered Member
Yeah you can't do anything on the actual panel.

This definitely has its limits, but it works, I guess.

9I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 10:57 pm

Fred100

Fred100
Registered Member
Registered Member
Pretty cool work mate , For me , you're one awesome dude Razz , No really , that's pretty cool , it'd be awesome to limit the co-admin's reaching , Really wonderful work , If I had to rate it , I'd rate it a 100/100 , just as anki said , it's sort of has it's limitations too , but it sure is cool! , awesome work , Wink

http://www.art-castle.biz/forum.htm

10I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Fri Jun 18, 2010 11:08 pm

ecosystem

ecosystem
Registered Member
Registered Member
hahah thanks, Fred. cheers

11I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:01 am

Sanket

Sanket
Administrator
Administrator
Blank



Last edited by Sanket on Sat Jun 19, 2010 12:17 am; edited 1 time in total

http://www.webartzforum.com

12I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:04 am

ecosystem

ecosystem
Registered Member
Registered Member
Blank

13I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:06 am

Sanket

Sanket
Administrator
Administrator
Well, but still what you have done is commendable & out of the box.

http://www.webartzforum.com

14I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:11 am

ecosystem

ecosystem
Registered Member
Registered Member
Thanks Smile .

Maybe this could be used for other things besides the admin panel too, but only time will tell.

Thanks for strengthening my idea, guys. I hope to create similar ones in the future!



Last edited by ecosystem on Sat Jun 19, 2010 12:29 am; edited 1 time in total

15I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:18 am

Fred100

Fred100
Registered Member
Registered Member
@ Sanket , Well , everything sure has it's limitations , doesn't it? , But on witnessing the conspicuous work done by ecosystem , I feel like applauding for him for it , but that still won't be enough how creativity he used into doing something like that , and , meh , Witnessing something unique done by someone (Well until copied by someone else.) , Is really a remarkable job which requires really loads of appreciation , lol , Don't think as if I made this post to ridicule someone , it's just a post expressing my views. Smile

http://www.art-castle.biz/forum.htm

16I'm a genius? Or am I not? Empty Re: I'm a genius? Or am I not? Sat Jun 19, 2010 12:18 am

Sanket

Sanket
Administrator
Administrator
Might want to edit your above post now eco.
Lets not give such ideas. Wink

http://www.webartzforum.com

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum