Home Forums WordPress Themes – Premium Preference Some customisation Reply To: Some customisation

#20017
Sushil Adhikari
Moderator

Basically support for customization is not really included. I can however, point you in the direction of existing code that you would need to edit or find.

For your font size in menus, lists, and widgets, this may be the more complicated one for you because of how I coded this theme (which I did not do a very good job with it). Your menu font sizing is done from the theme’s menu.css found in the /css/menu.css location. If you open this up, you will see the areas “font-size” exists. The main menu top level is done from the style.css file around line 158 and has this font sizing of 0.875rem (which is 14px)

#nav-wrapper {
font:normal 14px open_sans, Arial, sans-serif;
		font-size: 0.875rem;

For Widgets, you can try doing custom css like:

.widget {font-size: 14px;}

.widget is a class applied to all widgets, so the above might help.

Padding for info boxes (there’s no alert boxes) is found line 451:

.info-box-default,
.info-box-red,
.info-box-grey,
.info-box-amber,
.info-box-purple,
.info-box-mycustom {
	color:#fff;
	margin:20px 0;
	padding:20px;
	height:auto;
}

For button classes….you can use the demo site for this reference:
http://demo.styledthemes.com/preference/form-elements/

As for changing the theme page width, there is no setting or code for that, which is why when you changed it, it went funny looking. You could do it but it would require a lot of other adjustments.

I need to let you know (and others who read this), that Preference is an old theme and the way I coded this theme turned out to be not so good. This is one of the reasons I decided to rebuild and redesign the theme as a new theme I am calling “Preferential” which will replace Preference (this is being discontinued). Anyone who has already purchased Preference and still has an active download and update period will get a free Preferential theme (you being one). I’m going to try and finish up on the live demo site today (tomorrow at the latest) which you can observe here: http://demo.styledthemes.com/preferential/

There is a ton of changes and many new features and functionality.