Jump to content

Help with portal template Please


mrsandre

Recommended Posts

everything was working fine but....for some reason all the text and logins are off.

 

help1.jpg

 

The text is bunched together and you really can't see where to input the password.

 

 

the other issue is all the bold text is gone and everything is centered.

help2.jpg

Link to comment
Share on other sites

Heya

 

You have a Table with the class 'wrapper' as your main wrapping element. The centering issue is with this table:

 

<table cellspacing="0" cellpadding="0" align="center" class="wrapper">

 

Notice align="center" -- This is the cause for your centered text. Removing that will resolve. Probably a good idea to add a style="text-align: left;"

 

Most all of your other issues are related to your use of the WildCard Zeroing of all margins/padding, etc. Here is your CSS on line 1:

* {style.css (line 1)
-x-system-font:none;
border:0pt none #000000;
font-family:Arial,sans-serif;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:12px;
margin:0pt auto;
padding:0pt;
text-align:center;}

 

Zeroing "everything" should be followed up with some general spacing to some elements. Personally, I don't use wildcards. I setup each element so they're predictable. This has the same effect of using the wildcard (making things consistent across all browsers), but takes longer. Less headaches though.

 

If you still want to use the wildcard, it looks like its having the most drastic effect on your tablecells (td) and paragraph (p) elements. Setup some margins/padding where appropriate for those and you should be a little better off. Also note your wildcard (*) is applying another text-centering to things.

 

Hope that helps ya some.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated