- This topic has 5 replies, 2 voices, and was last updated 6 years, 5 months ago by
David.
-
AuthorPosts
-
November 8, 2019 at 11:39 pm #1057552
Bharat
Can you please help me to color the line which comes on the left side of a quote in generate press theme. just check this screenshot for reference. http://prntscr.com/pujh5g
Moreover, can you tell me on this website(https://www.anabolicbodies.com/supplements/steroid-alternatives/) which table of contents plugin have they used for making a table of contents? Because in the plugin which I use, the table is only coming on the left side. The right side of the table of contents is always vacant http://prntscr.com/puji35 . I also want to know how to color the header background on the table of contents like this
The bottom line is I want my table of content to look like this. http://prntscr.com/pujij4 Please help me how to achieve this
November 9, 2019 at 6:52 am #1057913David
StaffCustomer SupportHi there,
That example site is built with Thrive architect – try this CSS:
@media (min-width: 768px) { #ez-toc-container nav>ul { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; } #ez-toc-container ul li { -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid; } } div#ez-toc-container { padding: 0; background-color: #ccc; } div#ez-toc-container nav, .ez-toc-title-container { padding: 10px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .ez-toc-title-container { background-color: #000; } div#ez-toc-container p.ez-toc-title { color: #fff !important; } #ez-toc-container ul li a { color: red !important; }November 10, 2019 at 10:55 pm #1059093Bharat
I used this CSS code but it showed an error while using it. You can check the error here http://prntscr.com/pv8dde
I still used it(clicked on update even though it might break my website). It changed the table of contents to look like somewhat I want but it was again on one side only. check this http://prntscr.com/pv8esx to understand what I mean. I want two columns in the table of contents.Moreover, it how to change the color of the quotes line
November 11, 2019 at 2:20 am #1059195David
StaffCustomer SupportI edited the code above, there was a spacing missing between
@mediaand the firsts(
This should fix the error and provide the 2 columnsNovember 11, 2019 at 10:49 pm #1060122Bharat
Thank you very much. It worked now. Table of contents is sorted now
Now how to change the color of the quote line. Please check this http://prntscr.com/pvqa5pNovember 12, 2019 at 4:07 am #1060288David
StaffCustomer SupportTry this CSS:
blockquote { border-left: 5px solid #F00; } -
AuthorPosts
- You must be logged in to reply to this topic.