Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    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.

    Thread Starter chemdata

    (@chemdata)

    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.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    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.

    Thread Starter chemdata

    (@chemdata)

    <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.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Please use the code button in here to tag your HTML code. Otherwise, chunks of it are not visible.

    Thread Starter chemdata

    (@chemdata)

    I hope it makes sense now.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    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.

    Thread Starter chemdata

    (@chemdata)

    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.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    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.

    Thread Starter chemdata

    (@chemdata)

    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.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    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.

    Thread Starter chemdata

    (@chemdata)

    Mr. Lefebvre, once again “THANK YOU!!!” for all your help.

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Different link styles on different pages’ is closed to new replies.