-
AuthorPosts
-
February 6, 2015 at 4:29 am #391816
I installed a plugin WHOIS and the layout of the input fileds is not correct. When I use firebug to locate the problem:
#top select {
background: none repeat scroll 0 0 #fff;
border: 1px solid #e1e1e1;
border-radius: 0;
color: #777;
display: block;
font: 13px “HelveticaNeue”,”Helvetica Neue”,Helvetica,Arial,sans-serif;
margin: 0 0 20px;
max-width: 100%;
outline: medium none;
padding: 8px 6px;
width: 210px;
}
It is found to be the line “display: block;” when this line is deleted in firebug all is displayed correctly. However, when I place this modified code into quick css the problem is not resolved, likewise when I place the modified code into custom.css, again the problem is not resolved. It seems that quick css is not working for this entry, but it does work ok with other entries I have placed there.February 6, 2015 at 9:30 am #391878Hey vk5kdc!
You can try to add
!important
after each CSS statement if they are not taking effect.Example:
#top select { color: #777 !important; }
Best regards,
RikardFebruary 6, 2015 at 11:13 am #391911Hi,
You have missed the point entirely, I am not trying to make a statement work, rather stop it from working. If I remove the statement “display: block;” from the base.css file at line 199 everything works as it should, so how do I make the entries in the custom.css file or the quick css area work. Please review what I originally sent you.
Regards,
Don Crago
February 6, 2015 at 11:43 am #391935Hi Don!
If you’re trying to stop CSS generated from a plugin, then please refer to the CSS file generated by the plugin located in the plugin folder of your WordPress installation.
Cheers!
RikardFebruary 8, 2015 at 2:57 am #392609Hi Rikard,
Thanks for the reply, I have found the problem with the help of Tribulant Software. The base.css file at line 199 contains the command “display: block”, when this command is deleted the page displays as it should. This is not a plugin problem the plugin does not alter Enfolds base.css file. As to my original query, when I place the code for #top select, without the line “display: block” into the quick css section in the Enfold options, why does this not override the base.css entry. I thought this was the reason for entering alternate css codes.
Regatds,
Don Crago
February 9, 2015 at 6:08 am #392870Hey!
Could you try and explain exactly what you are trying to achieve on the page please?
Regards,
RikardFebruary 10, 2015 at 5:51 am #393485This reply has been marked as private.February 11, 2015 at 5:41 am #394128Hi!
Add this to Quick CSS:
#wpwhoisdiv input[type="text"], #wpwhoisdiv select{ display: inline-block !important; }
Cheers!
Josue -
AuthorPosts
- You must be logged in to reply to this topic.