As your membergroup gets higher, you get more permissions here on SMF Helper. Be sure to check out your profile for more options.
0 Members and 1 Guest are viewing this topic.
Simple Portal on 1.1.11 seems evened out for me, at least on this site .
Oh, I see what you mean. Well, I'm guessing it's in the CSS somewhere - some padding declaration or a margin. I'll take a look maybe tomorrow.
can I get a link to your site please?
.sp_right{ text-align: right; }
.sp_right{ text-align: right; margin-top: 30px; }
Ok, so technically it is aligned and to get it to be even with the center area of the board index you'll have to offset it, probably by adding a top-margin. The element is a table column called "sp_right" which is defined in the portal.css files found in Themes/default/portal.css . To change it you'll be looking for this:: .sp_right{ text-align: right; } Try changing it to something like this:: .sp_right{ text-align: right; margin-top: 30px; }Adjust the pixels until you get it right. Of course I haven't actually tried this myself and padding might work better than a margin, so as always make sure to make a backup. It's late or I would try it myself, sorry.
Sorry I didn't specify that it was SP not EZp. And you edited .sp_right ? I'll have a look.
#sp_right{ vertical-align: top;}
#sp_right{ vertical-align: top; padding-top:30px;}
Np glad I could I help. Yeah, you could figure out the exact pixels or percentage to use by looking a little more closely at the code. I guess you should probably just double check how it looks on different screen resolutions.
Well. SP just provided a new version, 2.3.2, so after upgrading, I had to come back here to get the code to fix the alignment again. I just wanted to say how much I appreciate this site as it made it so easy to fix my forums again.