http://screencast.com/t/PVW92RDrw
http://screencast.com/t/PVW92RDrw
I want to change the size of the Reviews H2 title so it is the same size as the Specifications H2 title.
http://dev2.electrixinternational.com/product/flat-lid-trunking-length/
Hey richardelectrix!
Add this to your custom CSS.
#comments h2 {
font-size: 17px !important;
}
Best regards,
Elliott
Hi
That changes the font to the correct size, but how do I now style it so it is the same as the others?
Correct:
http://screencast.com/t/OsxIrGaQd4
Incorrect:
http://screencast.com/t/EUSdUjJy
In the CSS, how do you know when to use a # and how do you know when to use a . ?
eg. #comments or .single-product . avia-post-nav ?
Hi!
Please change the code to following one
#top .woocommerce-tabs h2 {
font-size: 16px!important;
font-weight: lighter!important;
}
If you are targetting ID attribute then you use #. If class attribute, then .
Cheers!
Yigit
Hi
That doesnt appear to work.
Hi,
Try the following instead:
.wc-tab h2 {
font-size: 16px!important;
font-weight: lighter!important;
}
Adjust the values if needed.
Regards,
Rikard
Hi
That doesnt work either. The font is the correct size, but it isnt the correct weight.
Hi!
code is working fine for me. Try to change font-weight in Rikard’s code to:
.wc-tab h2 {
font-weight: bold !important;
}
and clear browser cache afterwards. Then you should be able to see the difference.
Cheers!
Andy
Hi
That still isnt working for me.
Reviews is still in bold.
Thanks
Hi,
font-weight: bold
will do that yes, try one of the following:
font-weight: 100 !important;
font-weight: 200 !important;
font-weight: 300 !important;
font-weight: 400 !important;
font-weight: 500 !important;
font-weight: 600 !important;
font-weight: 700 !important;
font-weight: 800 !important;
font-weight: 900 !important;
Best regards,
Rikard
Hi
This is fixed now thanks.