-
Posted in : BookCard WP
-
Hello,
Here is my website:
http://www.alejandroguimoye.comI would like to have the text “OPEN” and the stitching patter be in white color (so that it matches the “X” button in the contact page. Is there anyway to make the ribbon shorter?
Thank you.
Hi, try this custom css;
.ribbon strong { color: #FFF; text-shadow: 0 1px 0 #000; } .ribbon-stitches-bottom, .ribbon-stitches-top { border-top-color: rgba(255, 255, 255, 0.25); -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }Is there a way to make the ribbon shorter? Or add text to open for eg open me?
CJ
Hi,
How could I avoid having the ribbon altogether? I’d like to either have my own button to open or no “button” at all and just have the user click anywhere on the cover page to open the card.
Thank you,
HeatherBy default?
Can you expand on that term, by “default” many things are not possible but I have changed a majority of the layout. Can you please take the time to help me solve this dilemma? I would like to minimize the appearance or get rid of the ribbon button to improve the overall look of my design. I would settle for moving the button to the top or bottom of the front cover and reducing its size tremendously. Here is a link to see how it’s having a negative effect on the aesthetics of the site.– by default means it is not a feature that comes with the theme and needs further customization than just a few lines.
– you can try this custom css to move open button to top;
a.rm-button-open { top: 10%; }Thanks. Any chance you can give me a code to have the page open on a click rather than have the ribbon show?
I appreciate the help.
Heather
paste the code below to the External JS Box located under Theme Options > Style tab;
<script> jQuery(document).ready(function($) { $("html").click(function() { $('.rm-button-open').trigger('click'); }); }); </script>Awesome!! Thank you so much!!
:D
Добрый день! Использовал ваш код для изменения флажка “открыть”. Хочу сделать черно-белый флажок (фон черный, текст- белый). Подскажите, пожалуйста, код CSS?
Good day! Used your code to change the checkbox “open”. Want to make black-and-white flag (black background, text – white). Tell me, please, CSS code?
Good day! Used all kinds of combinations of codes to change the button “open”. Almost, turned out to be everything I wanted! Left dotted line white to do. Tell me, please, how to implement it? What CSS code to add??
Here’s a black and white version was:
.ribbon {
background: #000;
}
.ribbon:before {
border-color: #000;
border-left-color: rgba(0, 0, 0, 0);
}
.ribbon strong { color: white; }
You must be logged in and have valid license to reply to this topic.