CSS fixes (where?)

  • sohopub
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 6 months ago #2041 by sohopub
CSS fixes (where?) was created by sohopub
Hi,

I am trying to fix a few display issues with this otherwise brilliant component.


Running Joomla 3.3.1 with Rockettheme Template and Gantry.
www.knitclique.com/index.php/free-patterns

The problems that I am having are:

1) the tag filter looks great in Safari and Chrome but is looks like absolute crap in Firefox. The options tab fields are too small for the default font.(see attached images) I'm not finding where I can fix that. Suggestions?

2) When you choose an option from the lists the highlight/hover font is readable but the static font is always white. Again I've spent hours looking all over the place for any css options here in this forum and have searched the files but between all of the folders etc that run this I can't find where and how to fix it.

3) how can I add some padding between the search box and the "search" button?

Your help would be greatly appreciated.

Thank you.

Please Log in or Create an account to join the conversation.

More
9 years 6 months ago #2042 by andrea_4g
Replied by andrea_4g on topic CSS fixes (where?)
1) the solution to the dropdown abnormal padding, that masks part of the text, is here:
solidsystem.it/forum/custom-properties-3...module-css.html#2038

2) to change the color of the options of the dropdown (white-on-white), you need to edit the rule at line 162 of file media/jui/css/chosen.css
original:
Code:
.chzn-container .chzn-results li.active-result { cursor: pointer; display: list-item; }
modified:
Code:
.chzn-container .chzn-results li.active-result { color: #333; cursor: pointer; display: list-item; }
or you can just add the following rule to your template
Code:
.chzn-container .chzn-results li.active-result { color: #333;

3) to add some space between dropdowns and search button, you can add the following rule to your template:
Code:
.cp-auto-submit { margin-top: 10px; }
The following user(s) said Thank You: sohopub

Please Log in or Create an account to join the conversation.

  • sohopub
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 6 months ago #2043 by sohopub
Replied by sohopub on topic CSS fixes (where?)
Great! Thank you.

I ended up going with
Code:
.chzn-container-multi .chzn-choices li.search-field input[type="text"] { margin: 3px ; height: 15px; outline: 0; border: 0 !important; background: transparent !important; box-shadow: none; color: #666; font-size: 100%; font-family: sans-serif; line-height: normal; border-radius: 0; } div.cpsearch li.search-field input[type="text"]{ padding: 0px 2px 0px 8px;

Please Log in or Create an account to join the conversation.

Time to create page: 0.128 seconds