NetTalk Central

Author Topic: How can I increase the browse template picture? (see screenshot)  (Read 2813 times)

Mike McLoughlin

  • Full Member
  • ***
  • Posts: 126
    • View Profile
    • Clarion Templates
    • Email
I have set the amount of text to show in a browse column to @s15000  (see screenshot)  but it is being limited to @s15000

I checked the CSS and that does not seem to be the cause.

How can I increase it to 15000 characters?

Mike



Mike McLoughlin

osquiabro

  • Hero Member
  • *****
  • Posts: 668
    • View Profile
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #1 on: May 28, 2020, 03:46:35 AM »
in css tab column width(rel) change to 3 or more, see the inside de theme.css

.nt-flexwidth-01{flex-grow:0.1;}
.nt-flexwidth-02{flex-grow:0.2;}
.nt-flexwidth-025{flex-grow:0.25;}
.nt-flexwidth-03{flex-grow:0.3;}
.nt-flexwidth-033{flex-grow:0.33;}
.nt-flexwidth-04{flex-grow:0.4;}
.nt-flexwidth-05{flex-grow:0.5;}
.nt-flexwidth-06{flex-grow:0.6;}
.nt-flexwidth-066{flex-grow:0.66;}
.nt-flexwidth-07{flex-grow:0.7;}
.nt-flexwidth-075{flex-grow:0.75;}
.nt-flexwidth-08{flex-grow:0.8;}
.nt-flexwidth-09{flex-grow:0.9;}
.nt-flexwidth-1{flex-grow:1;}
.nt-flexwidth-2{flex-grow:2;}
.nt-flexwidth-3{flex-grow:3;}
.nt-flexwidth-4{flex-grow:4;}
.nt-flexwidth-5{flex-grow:5;}
.nt-flexwidth-6{flex-grow:6;}
.nt-flexwidth-7{flex-grow:7;}
.nt-flexwidth-8{flex-grow:8;}
.nt-flexwidth-9{flex-grow:9;}
.nt-flexwidth-10{flex-grow:10;}

Mike McLoughlin

  • Full Member
  • ***
  • Posts: 126
    • View Profile
    • Clarion Templates
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #2 on: May 28, 2020, 04:27:28 AM »
Thanks for your reply.  That would increase the width of content shown, but the problem is the overall amount of text - see new screenshot of the browse - the 2nd column just cuts off mid-sentence.

There is still about another 2k of text to show.

Mike
Mike McLoughlin

osquiabro

  • Hero Member
  • *****
  • Posts: 668
    • View Profile
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #3 on: May 28, 2020, 05:40:12 AM »
insert in the same column in Additional CSS Properties this:

'height'
'100%'

Mike McLoughlin

  • Full Member
  • ***
  • Posts: 126
    • View Profile
    • Clarion Templates
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #4 on: May 28, 2020, 07:39:08 AM »
still cutting off after 1500 characters.  Puzzling!
Mike McLoughlin

Matthew51

  • Full Member
  • ***
  • Posts: 151
    • View Profile
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #5 on: May 28, 2020, 02:32:26 PM »
I believe charion has a max picture size. However if you set the picture to '' nettalk should not try and format the text and you will get it all.
Contractor with 10+ years of NetTalk experience looking for work.
www.linkedin.com/in/matthew-leavitt
BisWare.ca
Check out my free EasyTime Template

Mike McLoughlin

  • Full Member
  • ***
  • Posts: 126
    • View Profile
    • Clarion Templates
    • Email
Re: How can I increase the browse template picture? (see screenshot)
« Reply #6 on: May 28, 2020, 11:05:30 PM »
Thanks, that was the solution.
Mike McLoughlin