-
AuthorPosts
-
December 3, 2018 at 3:02 pm #1040336
Hi,
The font in tables (minimal style) is tiny.
Can you help me with a rule that set a minimum font for all tables?
Thanks!December 4, 2018 at 5:27 am #1040566Hey mooshonov,
Please try the following in Quick CSS under Enfold->General Styling:
.avia_pricing_minimal td { font-size: 15px; }
Best regards,
RikardDecember 4, 2018 at 8:51 am #1040621Thanks Rikard,
That code changes only the body text while the header still small.December 4, 2018 at 7:27 pm #1040862Hi mooshonov,
Try adding this code as well:
.avia_pricing_minimal th { font-size: 15px; }
then adjust the font size value.
Best regards,
NikkoDecember 4, 2018 at 8:41 pm #1040932Great we are back in the game!
Solved!December 4, 2018 at 8:42 pm #1040935This reply has been marked as private.December 4, 2018 at 8:48 pm #1040939Hi mooshonov,
Make sure to properly indent your css code, this way it’s easier to read and debug if there are issues.
then you can group the code if it has similar properties, for example this code:.avia_pricing_minimal td { font-size: 20px; } .avia_pricing_minimal th { font-size: 20px; }
can be written as:
.avia_pricing_minimal td, .avia_pricing_minimal th { font-size: 20px; }
then you can merge the media queries for example there are multiple:
@media only screen and (max-width: 479px) { //some css code here }
you can have just one of that and just insert the content.
It would also be good to have your media queries at the bottom.
Best regards,
NikkoDecember 4, 2018 at 10:08 pm #1040976This reply has been marked as private.December 6, 2018 at 3:01 pm #1041685Hi mooshonov,
Try using this, let us know if this helps.
.avia-button, .single_add_to_cart_button, .woocommerce-page .button { font-size: 18px !important; } #sub_menu1 { z-index: 301; } .avia_pricing_minimal td, .avia_pricing_minimal th { font-size: 20px; } #scroll-top-link { right: auto !important; left: 50px!important; } #top div .product_on_sale .inner_product_header { padding-left: 47px !important; padding-right: 15px !important; } #top #main .single-product-main-image .onsale { right: auto; } .av_header_transparency #header_main .main_menu ul:first-child > li > a { color: #fff; } .page-id-8105 .entry-content-wrapper select option { background-color: black; } span.minitext { display: none !important; } #top .price span { font-size:26px !important; } .woocommerce td { font-size: 16px; } h2.woocommerce-loop-product__title { font-size:22px !important; } @media only screen and (max-width: 767px) { .responsive #top .logo{ width: 100% !important; } .responsive #top .logo a { float: left; padding-right: 100px; padding-top: 0; } } @media only screen and (min-width: 480px) and (max-width: 990px) { #top .no_margin.av_two_fifth { padding: 20px 30px !important; } } @media only screen and (max-width: 479px) { #top .no_margin.av_two_fifth, #top .no_margin.av_three_fifth { width: 100%; } #top .no_margin.av_two_fifth { padding: 30px !important; } .flex_cell { display: block; } }
Best regards,
NikkoDecember 6, 2018 at 9:18 pm #1041840This reply has been marked as private.December 10, 2018 at 4:31 pm #1043138Hi mooshonov,
I’ve just refactored and shortened the css code you have.
So far I don’t see any useless css codes, but some duplicates and some also that needs to be grouped.Best regards,
NikkoDecember 10, 2018 at 5:39 pm #1043201Thanks so much Nikko!
December 10, 2018 at 6:07 pm #1043225Hi mooshonov,
No problem, glad that we could help :)
Feel free to create a new thread, if you need further assistance.
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
- The topic ‘Tiny Font in Tables’ is closed to new replies.