- Messages
- 40
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.
You should upgrade or use an alternative browser.
Infinite
- Thread starter ChemicalKicks
- Start date
- Messages
- 40
Also you were posed the following feedback on xenforo.com
"Can I make a suggestion to database-store the values instead of using cookies (for logged-in users)? It just allows for people who are using private browsing/multiple computers to retain their style."
Is this not something you would consider, for example I post from 3 different machines, having to match all 3 especially for someone who isn't as savvy would be a bit of a problem
"Can I make a suggestion to database-store the values instead of using cookies (for logged-in users)? It just allows for people who are using private browsing/multiple computers to retain their style."
Is this not something you would consider, for example I post from 3 different machines, having to match all 3 especially for someone who isn't as savvy would be a bit of a problem
- Messages
- 5,058
- Website
- www.xenfocus.com
Adding a link to reset the colour choice to default is possible if needed.
A light version of your logo has been made. Basic colour change, but it works.

I don't have the knowledge to store the colour selection in the database. It would be nice if it was simple to achieve, however since Infinite is a skin (and not a modification/addon), I'm not sure how to add that functionality to XenForo. Additionally it would also require database modifications which is something I would prefer to exclude from my skins.
A light version of your logo has been made. Basic colour change, but it works.
I don't have the knowledge to store the colour selection in the database. It would be nice if it was simple to achieve, however since Infinite is a skin (and not a modification/addon), I'm not sure how to add that functionality to XenForo. Additionally it would also require database modifications which is something I would prefer to exclude from my skins.
- Messages
- 40
Ehren I really appreciate you're response, watch this space fella. 
- Messages
- 40
Oh another question at the bottom of the pages you have the queries displayed, can that be turned off?
- Messages
- 40
A suggestion, when in a thread looking at posts, can you round all those corners on the individual posts. Throughout the rest of the theme all the corners are lovely and rounded and the posts don't actually dit the rest of the overall style. 
- Messages
- 5,058
- Website
- www.xenfocus.com
The queries are a setting which I believe is disabled by default. It's just enabled on our development/demo board for testing. 
To round the messages, add this to EXTRA.css:
To round the messages, add this to EXTRA.css:
Code:
.message{ border-radius: 3px; }
- Messages
- 40
Hey, I'm over here 
*checks paypal*
Bugger, I think I may have purchased the skin without sticking my username in. My email address has my username in it if you're looking at incoming paypal.
*checks paypal*
Bugger, I think I may have purchased the skin without sticking my username in. My email address has my username in it if you're looking at incoming paypal.
- Messages
- 5,058
- Website
- www.xenfocus.com
No worries - thanks for your order. 
- Messages
- 40
Thank you.
Couple of things for the life of me I cannot get my forum logo to display and how do I remove the copyright?
Couple of things for the life of me I cannot get my forum logo to display and how do I remove the copyright?
- Messages
- 40
Header Logo Image Path doesn't seem to work?
- Messages
- 5,058
- Website
- www.xenfocus.com
Copyright removal info was provided in the confirmation email which was sent to your Paypal address. Make sure your path is correct for the logo.
Upload the image via FTP to /styles/infinite/xenforo/logo.png and your path should be the same:
Upload the image via FTP to /styles/infinite/xenforo/logo.png and your path should be the same:
Code:
styles/infinite/xenforo/logo.png
- Messages
- 40
Copyright removal info was provided in the confirmation email which was sent to your Paypal address. Make sure your path is correct for the logo.
Upload the image via FTP to /styles/infinite/xenforo/logo.png and your path should be the same:
Code:styles/infinite/xenforo/logo.png
Hey,
I must be missing something completely.


- Messages
- 5,058
- Website
- www.xenfocus.com
Can you provide the URL to your forum?
View the source to see what the URL of the image is.
View the source to see what the URL of the image is.
- Messages
- 40
Can you provide the URL to your forum?
View the source to see what the URL of the image is.![]()
It's really weird, it's just not showing at all, when I inspect the element for the defaul style I can see the logo path, when I do the same for infinite there's nothing to inspect.
I deleted the style then removed the infinite folder then reinstalled from scratch. Doesn't matter what I change that path to nothing shows.
Also the paths default to something like styles/framework/xenforo/logo.png but that path/folder doesn't exist, double odd.
I've sent you logins if you want to look.
- Messages
- 5,058
- Website
- www.xenfocus.com
Yeah, the default path is just an example URL, so the folder won't actually exist on your site.
Actually there's one thing which you might not have done yet. Are you aware that the Infinite skin uses HTML text for the default logo? To make it use an image, you first need to go to the logo_block template file and find:
Replace that with:
Actually there's one thing which you might not have done yet. Are you aware that the Infinite skin uses HTML text for the default logo? To make it use an image, you first need to go to the logo_block template file and find:
Code:
<a href="{$logoLink}" id='text_logo'>
@logoText
</a>
Replace that with:
Code:
<div id="logo"><a href="{$logoLink}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
</a></div>