Log In · Register

 
Move Extended Network
crissa_85
post May 19 2008, 09:57 PM
Post #1


Senior Member
***

Group: Member
Posts: 30
Joined: Nov 2006
Member No: 480,913



I thought I had the code handy but can't find it! Can someone give me the code to move the extended network banner up/down? Thanks!
 
 
Start new topic
Replies (1 - 4)
synatribe
post May 19 2008, 10:01 PM
Post #2


AIDS at RAVES.
******

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



move? I;ve never heard of that I know you can change it into an image or resize it but I dont think you can move it
 
fixtatik
post May 19 2008, 11:56 PM
Post #3


Senior Member
******

Group: Member
Posts: 1,237
Joined: May 2008
Member No: 648,123



CODE
.extendedNetwork { }

you can add various positioning attributes:
position:absolute;
position:relative;


you can move it around the screen (by pixels or percentage):
top:;
right:;
bottom:;
left:;


using position:absolute; will define precisely on the page where it's going to be based on margins or top, right, etc. using position:relative; will move it a certain distance from its current position.
 
synatribe
post May 19 2008, 11:58 PM
Post #4


AIDS at RAVES.
******

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



QUOTE(grrDesign @ May 19 2008, 11:56 PM) *
CODE
.extendedNetwork { }

you can add various positioning attributes:
position:absolute;
position:relative;


you can move it around the screen (by pixels or percentage):
top:;
right:;
bottom:;
left:;


using position:absolute; will define precisely on the page where it's going to be based on margins or top, right, etc. using position:relative; will move it a certain distance from its current position.

for all browsers? because whenever I try it dosent work, so I just change it with a pic
 
fixtatik
post May 20 2008, 12:02 AM
Post #5


Senior Member
******

Group: Member
Posts: 1,237
Joined: May 2008
Member No: 648,123



yes, it works for all browsers. firefox, opera, and safari will do it properly. you'll probably have to add conditional exceptions for internet explorer (using an underscore in front of the attribute).

example:
CODE
.extendedNetwork { position:relative; right:20px; _right:15px; }


_right:15px; will move it to the right 15 pixels in internet explorer (20 pixels in all other browsers). internet explorer has rounding problems, so while the original 20 pixels you wanted to move it will work in all other browsers, there are issues in internet explorer. hence, you'd use the conditional code.
 

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