- This topic has 2 replies, 2 voices, and was last updated 10 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Troubleshooting › CSS issue with the member list shortcode [emember profile extended]
Tagged: css issue, Profile Extended
[http://dev.aaensp.org/espace-membre/membres-par-nom/]
On this page I think, due to the theme css I have an issue with the search (rechercher) button and the display
<< | < page number > | >> that seems to be broken.
for the search issue I’ve tried
.emem-profilex-search-box input{
margin:0px;
display: inline-block;
}
but the search button do not go up nearby the field
concerning the << | < page number > | >> layout,
I think it has something to be with the class input.current-page and also the div.tablenav-page.one-page. But as I not a specialist on css, I dont know what to type on the custom css code area of the theme to override the css from the plugin. Anyone may provide me some help?
Chris
This particular CSS issue is coming from your theme specifying all text fields to have a minimum width of 210px and a block display (a theme shouldn’t force apply a block display on all text fields).
Anyway, Add the following custom CSS to counter it:
.current-page{
width: auto !important;
display: inline !important;
}
You can use the following plugin to add custom CSS:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Thanks for the trick.
as .current-page{
width: auto !important;
display: inline !important;
}
does not changed anything I tried input.current-page{
width: auto !important;
display: inline !important;
}
And It works.
Many Thanks.
Chris