Announcement

Collapse
No announcement yet.

Font size in Best Sellers homepage

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Font size in Best Sellers homepage

    On my homepages I have best sellers lists in the content area, responsive design 4 column, and they are all fine, except on one website which is a clone of one of the others, where the font size for the short description (product name) is much too large. Odd - cannot see anything different in the settings. I can change the font size in the script for Best Sellers by adding <font size=2> etc, but am concerned about this messing up the responsive design, being a fixed size, and also because using it reduces the font size correctly but there are wide gaps between the lines. Any suggestions?

    Sarah

    #2
    Links to a normal and faulty site would help.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      You can use 'vh' (Viewport Sized Typography) to make the font size accommodate.

      Code:
      .sidebar h2 {
      	border-bottom: 5px solid <actinic:variable name="Palette2" />;
      	color: <actinic:variable name="Palette1" />;
      	font-weight: bold;
      	margin: 0;
      	padding: 18px 0 6px 0;
      	font-size: 3.5vh!Important;
      }
      https://css-tricks.com/viewport-sized-typography/
      Jonathan Chappell
      Website Designer
      SellerDeck Website Designer
      Actinic to SellerDeck upgrades
      Graphicz Limited - www.graphicz.co.uk

      Comment

      Working...
      X