| User | Post |
|
10:31 am March 20, 2009
| fersal6
| | |
| New Member | posts 2 | |
|
|
Where do I change the CSS properties that control the formatting of the sidebar title bars (”Categories”, “Archives”, etc.?), as well as the content below these titles? I've looked all over the Editor files and I can't find the appropriate styles.
By the way, let me tell you that Flex2 is an awesome theme, and FlexSqueeze looks great; I'll buy it while the promotional price is still up. If I like it, I'll recommend it to my thousand or so marketing friends… do you have an affiliate program in place?
Thanks!
|
|
|
10:40 am March 20, 2009
| Ryan
| | |
| Admin
| posts 1523 | |
|
|
You can style the sidebar title pretty extensively in the theme settings, but if you want to do more, the CSS styles are in the style.php file (Flexibility2 doesn't use style.css other than for theme info). Just look for the sidebar-left h2 and sidebar-right h2 styles. Those control the sub sidebar titles. Just be careful not to remove the php code because then your theme settings won't work for changing styles.
As a matter of fact I do have an affiliate program for the theme and vector pack, I just haven't made it public yet because I don't have all the banners made. It will be live April 1, but if you'd like to sign up prior to that, just contact me and I'll shoot you the details (or anyone else for that matter).
|
|
|
12:07 pm March 20, 2009
| fersal6
| | |
| New Member | posts 2 | |
|
|
Thanks Ryan, I'll try to contact you next week about the affiliate program.
Does not using the style.css file mean that I'll have to re-apply all changes to style.php whenever you release an update?
|
|
|
12:14 pm March 20, 2009
| Ryan
| | |
| Admin
| posts 1523 | |
|
|
Correct. Any changes made to the style.php file would be overwritten by a theme reinstall.
|
|
|
2:42 pm March 23, 2009
| SpiderDog
| | Mountain View, CA | |
| Member | posts 3 | |
|
|
You might try one of these methods to create a secondary style sheet. You would only have to update the one line of code in the header.php file after an update.
File: header.php
Do This: <style type=”text/css” media=”screen”> <!– @import url( <?php bloginfo('stylesheet_url'); ?> ); –> </style>
Or This: ( no style tags ) <link rel=”stylesheet” href=”<?php bloginfo('stylesheet_url'); ?>/style.css” type=”text/css” media=”screen” />
But Not This: <style type=”text/css” media=”screen”> <?php include (TEMPLATEPATH . '/style.css'); ?> </style>
This then allows a custom override: (use the correct stylesheet file names)
<link rel=”stylesheet” href=”<?php bloginfo('stylesheet_url'); ?>/style.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”<?php bloginfo('stylesheet_url'); ?>/style-custom.css” type=”text/css” media=”screen” />
See the following
———————
Using IE Internet Explorer Conditional Tags for Style Sheet Selection
Using IE Conditional Tags for Style Sheet Selection
CSS Import Bug In IE (Fix, Hack)
|
|