Executive // xenfocus.com

Executive // xenfocus.com [Paid] 1.4.x

No permission to buy ($30.00)
Error on 1.4 with a bunch of subforums

Can confirm this. I also sent Ehren a PM about this issue yesterday.

Add this to the end of EXTRA.css (it'll also fix a few responsive issues) :)

Code:
@media (min-width: 991px){
   .subForumList{ padding-right: 428px; }
}

@media (max-width: 990px){
   .idxStats{ display: none; }
   #forums .nodeText{ padding-right: 0; }
   .subForumList{ padding-right: 225px; }
}

body .node .subForumList li { width: 47%; }
 
Add this to the end of EXTRA.css (it'll also fix a few responsive issues) :)

Thanks. It worked like a charm. I purchased the branding removal as a small thanks for the prompt response, not that we will make any use of it ;)
 
Last edited:
Not sure what I did, but how would I go about fixing this issue?

Screenshot_00-22-23.png


Screenshot_00-22-32.png


I'm guessing it's a padding issue. It happens when I create a thread.
 
Not sure what I did, but how would I go about fixing this issue?

I'm guessing it's a padding issue. It happens when I create a thread.
Add to the end of extra.css :)

Code:
#ThreadCreate{ padding: 1px 10px; }
 
@Ehren - could you provide some CSS for the lost password page?

Here's a screenshot - looks a bit compact/needs padding.

lost_password.webp

It also looks a bit strange with the "Weekly digest" subscribe/unsubscribe page. I think it uses the same template as above.

weeklY-digest3.webp

I also noticed that there is no padding on the "Edit" post or edit conversation page.
edit_post.webp
 
Last edited:
You could try to fix the problem globally by using:
Code:
.xenForm{ padding: 10px; }

See if that works, add to the end of extra.css :)
 
You could try to fix the problem globally by using:
Code:
.xenForm{ padding: 10px; }

See if that works, add to the end of extra.css :)
Thanks! Yupp, that solved that problem. It looks much better now throughout the template as far as I can tell (y)
 
"New Profile Posts" will probably also need some padding. I think that 10px should be fine, but I'm not sure where to change that.

padding.webp

(Sorry for the SPAM, but I think that it's pretty much 100% done after this one :))
 
@Ehren - could you tell me which template to edit in order to embed the latest version of Font Awesome? (4.4)

Hello,

Font Awesome is included in the PAGE_CONTAINER template file:
Code:
  <xen:if is="@fontawesome"><link rel="stylesheet" href="@imagePath/xenfocus/icons/css/font-awesome.min.css" /></xen:if>
 
Top Bottom