Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

How can I chage the LinksSQL to be left-aligned?

Quote Reply
How can I chage the LinksSQL to be left-aligned?
Hello

How can I change the Links SQL to look left-aligned? Right now it looks like there is a center page, which is center-aligned, which contains all the categories and links. I want this section of the page to be left-aligned, but I could not find any setting for this in css

Thanks in advance
Quote Reply
Re: [zrec] How can I chage the LinksSQL to be left-aligned? In reply to
Hi,

Do you mean the whole page - or just the categories? If you're talking about the whole page - then you need to edit the body {} bit:

Code:
body {
margin: 0px;
padding: 0px;
color: #33332e;
background: #ffffff;
font: normal 11px tahoma, geneva, verdana, sans-serif;
text-align: center;
}

Not sure if thats what your trying to do?

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] How can I chage the LinksSQL to be left-aligned? In reply to
Hi, Andy

Here is my current setting of the body bit:

body {
margin: 0px;
padding: 0px;
color: #33332e;
background: #ffffff;
font: normal 11px tahoma, geneva, verdana, sans-serif;
text-align: center;
}

It seems that all settings are like you suggested.

www.metapleroma.org/directory

I am talking about the whole page being left-aligned. Right now the whole thing (the logo, the top menus, the categories and links) are located in the center. What can I do to make it left-aligned?

Thanks
Quote Reply
Re: [zrec] How can I chage the LinksSQL to be left-aligned? In reply to
Hi,

Mmm.. I see what you mean Unsure I just tried changing "center" to align - and it only works for the text (makes sense I guess <G>). I'm afraid its still a bit early here (not even 7am), so I could just be missing something silly. I'll have another look when I'm a bit more with it =)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] How can I chage the LinksSQL to be left-aligned? In reply to
Hi, Andy

Did you have a chance to look at this? Is there anything that can be done?

Thanks
Quote Reply
Re: [zrec] How can I chage the LinksSQL to be left-aligned? In reply to
Hi,

I'm afraid not :(

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] How can I chage the LinksSQL to be left-aligned? In reply to
Hi, Andy

Thanks. But this seems strange, does it mean I can't control how a certain page looks? There should be something that controls this setting, no? I've seen some pages which seem to run LinksSQL, they were left-aligned?

Thanks again in advance.
Quote Reply
Re: [zrec] How can I chage the LinksSQL to be left-aligned? In reply to
Hi,

Oh, its definatly possible - but I don't have the time to look into it really at the moment (working on my new Affiliate plugin - and its proving quite a big job :D). Only thing I can suggest, is keep playing with it (FireFox is cool - with the "Web Developer" Add-On, as it lets you edit the CSS locally, without having to keep making the changes to your site.

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] How can I chage the LinksSQL to be left-aligned? In reply to
Hi, Andy:

Thanks for your help.

Could anybody else help me with this?

I would appreciate any help anyone can provide with this.
Quote Reply
Re: [zrec] How can I chage the LinksSQL to be left-aligned? In reply to
I believe this is what you need:
Code:
#wrapper {
margin-left: 0px;
}
body {
text-align: left;
}
The rule on the body is only needed for IE 5 (maybe 5.5).

Adrian

Last edited by:

brewt: Dec 6, 2007, 5:08 PM