…maybe, maybe not. I added what seemed to be the positioning tweak for my one shortcode button in the css of the child theme style.css so the button has the following, but when I saved and refreshed, it did not move up to the top corner as expected.
Based on section 4 of the tutorial above on barelyfitz.com…
‘position: relative !important;
position:absolute;
top:0;
right:0;
width:200px;’
aaand since that may be pretty vague as to what I’m doing, let me post the css for the one button: (that’s currently the green Catalog button that is in the middle of the home page.)
‘
div.maxbutton-1-container {
position: relative !important;
position:absolute;
top:0;
right:0;
width:200px;
}
a.maxbutton-1 {
text-decoration: none !important;
color: #ffffff !important;
font-family: Verdana !important;
font-size: 16px !important;
font-style: normal !important;
font-weight: normal !important;
padding-top: 15px !important;
padding-right: 25px !important;
padding-bottom: 15px !important;
padding-left: 25px !important;
background-color: #98ba40 !important;
background: linear-gradient(#98ba40 45%, #618926);
background: -moz-linear-gradient(#98ba40 45%, #618926);
background: -o-linear-gradient(#98ba40 45%, #618926);
background: -webkit-gradient(linear, left top, left bottom, color-stop(.45, #98ba40), color-stop(1, #618926));
border-style: solid !important;
border-width: 1px !important;
border-color: #618926 !important;
border-radius: 4px !important;
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
text-shadow: -1px -1px 0px #618926 !important;
box-shadow: 0px 0px 2px #333333 !important;
-pie-background: linear-gradient(#98ba40 45%, #618926);
position: relative !important;
position:absolute;
top:0;
right:0;
width:200px;
behavior: url(“https://www.uintalibrary.org/wp/wp-content/plugins/maxbuttons/pie/PIE.htc”);
}
a.maxbutton-1:visited {
text-decoration: none !important;
color: #ffffff !important;
}
a.maxbutton-1:hover {
text-decoration: none !important;
color: #ffffff !important;
background-color: #2270df !important;
background: linear-gradient(#2270df 45%, #12295d);
background: -moz-linear-gradient(#2270df 45%, #12295d);
background: -o-linear-gradient(#2270df 45%, #12295d);
background: -webkit-gradient(linear, left top, left bottom, color-stop(.45, #2270df), color-stop(1, #12295d));
border-color: #0f2557 !important;
text-shadow: -1px -1px 0px #12295d !important;
box-shadow: 0px 0px 2px #333333 !important;
-pie-background: linear-gradient(#2270df 45%, #12295d);
position: relative !important;
position:absolute;
top:0;
right:0;
width:200px;
behavior: url(“https://www.uintalibrary.org/wp/wp-content/plugins/maxbuttons/pie/PIE.htc”);
}
‘