Definitely. First, increase the number of libraries to 2 or more in the general settings page. Then, go to the Library Settings page and configure each library as desired.
When using the link-library shortcode, add the parameter settings to indicate which configuration should be used:
[link-library settings=”2″]
Let me know if you have any trouble getting this to work and please consider donating to support this plugin’s development.
Thank you. That worked great.
I have the links on a page that starts with a centered image. I do not show the category name on the page. I have the individual links within a <div box> however the links boxes are not centered. Any thoughts.
Are you saying that you want to have all of the div boxes centered? Would be easier if you point me to a URL where I can see the plugin in action. Then I can make change to your stylesheet using local browser dev tools and recommend what to change to get the expected result.
<a href="http://pdrcllc.com/sample-page"></a>
When I look at the code using Chrome’s Inspector I see the all 6 links are between <ul> and </ul>
.
I also see in the css with Chrome’s Inspector that if I change it
from: <strong>media="all" ul, ol { margin: 0 0 1.5em 3em;}/strong>
to: </strong><strong>media="all" ul, ol { /* margin: 0 0 1.5em 3em; */}</strong>
that the links are then centered.
Unfortunately when I introduce this css into my style.css in my child-them it doesn’t do anything.
Please use the code button in here to tag your HTML code. Otherwise, chunks of it are not visible.
I hope it makes sense now.
I see. Try adding the following in the stylesheet editor for Link Library:
.LinkLibraryCat ul {
margin: 0;
}
Please consider donating to support this plugin’s development.
As I didn’t know what you meant by stylesheet editor for Link Library I added .LinkLibraryCat ul { margin: 0;} to both link-library-admin.css and stylesheettemplate.css but with no success. If you can tell me specifically what file to add it to I will. Thanks.
Under the link Library menu, there is an item called Stylesheet. Click on that item and scroll to the bottom of the stylesheet editor and add that item, then save your changes.
Thank you. That did the trick. Can I add this to to my child-theme code as I worry that if you change your plugins and I update it that the addition “.LinkLibraryCat ul { margin: 0;} may be lost.
Probably, although that might change the priority of it. If it does not work, you can try changing to:
.LinkLibraryCat ul {
margin: 0 !important;
}
Please consider donating to support this plugin’s development.
Mr. Lefebvre, once again “THANK YOU!!!” for all your help.