Hello Mike,
Check out the documentation on arrows.
You can also remove the arrows simply by providing a trigclass of ‘noarrow’ like so:
[expand title="trigger text" trigclass="noarrow"]hidden text[/expand]
And for a more in-depth posts all about various collapse-o-matic/css arrow tricks, check out:
http://spacedonkey.de/?s=arrow
This would be the same process in both the free and pro version. Pro will just provide more advanced features and next-level personal support.
Cheers!
Ok, thanks – I had mixed results, padding and margins still showing. I ended up pasting this into theme css to get the behavior needed.
.collapseomatic {
background-image: none !important;
padding-left: 0 !important;
}
.colomat-close {
background-image: none !important;
padding-left: 0 !important;
}
.collapseomatic_excerpt, .collapseomatic_content {
margin-left: 0 !important;
}
-
This reply was modified 9 years ago by
mike8712.
-
This reply was modified 9 years ago by
mike8712.
No, you can do a number of things such as:
a) assign noarrow as a default trigclass in the plugin settings
b) overwrite the arrows with your own or remove them all togher using the CSS in the links above, ie:
Remove:
.collapseomatic {
background-image:none !important;
}
.colomat-close {
background-image:none !important;
}
Note: you will also need to adjust the CSS of trigger and content padding:
.collapseomatic, collapseomatic_content{
padding-left: 0 !important;
margin-left: 0 !important;
}
Replace:
.collapseomatic {
background-image: url(your_down_arrow_image_here.png) !important;
}
.colomat-close {
background-image: url(iour_up_arrow_image_here.png) !important;
}
Hope that helps