Infinite

ChemicalKicks

Member
Customer
Messages
40
Can I set a default colour so that a user can always reset back to the default that I've set?

Only problem I could see with using this style is that my site logo has bee created for dark on light (heh;)) Do you guys think you could quote me for a redesign of my logo to make it blend?

sps.png
 

ChemicalKicks

Member
Customer
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 :)
 

Ehren

Administrator
Staff member
Customer
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. :)

sps_dark.png

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.
 

ChemicalKicks

Member
Customer
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. :)
 

Ehren

Administrator
Staff member
Customer
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:
Code:
.message{ border-radius: 3px; }
 

ChemicalKicks

Member
Customer
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.
 

Ehren

Administrator
Staff member
Customer
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:
Code:
styles/infinite/xenforo/logo.png
 

ChemicalKicks

Member
Customer
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.

infi.pngxeninfinite.png
 

ChemicalKicks

Member
Customer
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.
 

Ehren

Administrator
Staff member
Customer
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:
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>
 
Top