Jump to content

markdown for a table for squarespace 7.1

Recommended Posts

Site URL: https://www.irene-pichler.com/ber-mich

Hello guys,

I need help please: I'm using a markdown for a table in squarespace 7.1 for a client. I managed to take one from a tip for template 7.0 but I can't design it now the way I want to. 

There are three problems:

1. I don't know how to move to the next row (just the headline is in it until now 🙈)

2. I don't know how to center the text (all text should be centered from the middle of the box)

3. I don't know how to make the distance between headline and rest of the text body a little bit broader (maybe double or a bit less) than in between the other lines (of course, since I don't even know how to change into the next row 😜).

If someone can help me with that markdown 🙏

You can see it here: https://www.irene-pichler.com/ber-mich - the pw is: Homepage2020 (the first box is a try of mine putting the text into a picture, which is blurred and looks terrible. the second box is the markdown, but I don't manage to change to the second line...)

Bildschirmfoto 2020-11-05 um 13.25.19.png

Link to comment

Please show us which markdown code you used

Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.
Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio plugin
If you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you

Link to comment

@bangank36

This is the one I´ve had:

 

<table style="width:100%">
  <tr>
    <th>IRENE in *Kurzfassung*</th>
   
  </tr>
  <tr>
    
</table>

<style>
  table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
th, td {
  padding: 15px;
  text-align: left;
}
table#t01 {
  width: 100%;    
  background-color: #f1f1c1;
}
</style>

Link to comment

Would you mind to send the current text inside the image too? Split into seperate lines too

Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.
Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio plugin
If you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you

Link to comment
9 minutes ago, hanna38 said:

she wants it to look like that:

irene pichler in kurzform sw klein.png

I need them in text format so I can copy

Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.
Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio plugin
If you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you

Link to comment

thanks for your help!!! 😊

I fill in the text here, because pdf, pages and word are not allowed to load up here...

 

IRENE in Kurzfassung

32 Jahre. Wien. OÖ. Musik. Freunde. Familie.  Lebensweisheitssprüche. Kaffee. Yoga. Akrobatik.  Handstand. Klettern. Musicals. Singen. Berge. Wasser. Natur. Urlaub. Adrenalin. Stadtvegetarierin. Dialekt. Sport- und Ernährungswissenschaft. Freizeit.

 

Link to comment
16 hours ago, hanna38 said:

thanks for your help!!! 😊

I fill in the text here, because pdf, pages and word are not allowed to load up here...

 

IRENE in Kurzfassung

32 Jahre. Wien. OÖ. Musik. Freunde. Familie.  Lebensweisheitssprüche. Kaffee. Yoga. Akrobatik.  Handstand. Klettern. Musicals. Singen. Berge. Wasser. Natur. Urlaub. Adrenalin. Stadtvegetarierin. Dialekt. Sport- und Ernährungswissenschaft. Freizeit.

 

<table style="width:100%">
  <tr>
    <th>IRENE in *Kurzfassung*</th>
  </tr>

<tr><td>32 Jahre. Wien. OÖ. Musik. Freunde. Familie.  Lebensweisheitssprüche. Kaffee. Yoga. Akrobatik.  </td></tr>

<tr><td>Handstand. Klettern. Musicals. Singen. Berge. Wasser. Natur. Urlaub. Adrenalin. Stadtvegetarierin. </td></tr>

<tr><td>Dialekt. Sport- und Ernährungswissenschaft. Freizeit.</td></tr>
  <tr>
    
</table>

Let's start from the table markup, I will edit styling from there

Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.
Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio plugin
If you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you

Link to comment
<table id="irene">
    <tr>
        <td>
          <div>
            <strong>IRENE in *Kurzfassung*</strong>
            <br><br>
          </div>
          <div>
            32 Jahre. Wien. OÖ. Musik. Freunde. Familie.  Lebensweisheitssprüche. Kaffee. Yoga. Akrobatik.  Handstand. Klettern. Musicals. Singen. Berge. Wasser. Natur. Urlaub. Adrenalin. Stadtvegetarierin. Dialekt. Sport- und Ernährungswissenschaft. Freizeit.
          </div>
        </td>
    </tr>
</table>
<style>
  table#irene {
    width: 80% !important;
    margin: 0 auto;    
}
table#irene,
table#irene tr {
    border: 1px solid black;
    border-collapse: collapse;
}
table#irene td {
    text-align: center;
    padding: 20px;
}
</style>

 

Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.
Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio plugin
If you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you

Link to comment
On 11/10/2020 at 5:54 AM, bangank36 said:

<table style="width:100%">
  <tr>
    <th>IRENE in *Kurzfassung*</th>
  </tr>

<tr><td>32 Jahre. Wien. OÖ. Musik. Freunde. Familie.  Lebensweisheitssprüche. Kaffee. Yoga. Akrobatik.  </td></tr>

<tr><td>Handstand. Klettern. Musicals. Singen. Berge. Wasser. Natur. Urlaub. Adrenalin. Stadtvegetarierin. </td></tr>

<tr><td>Dialekt. Sport- und Ernährungswissenschaft. Freizeit.</td></tr>
  <tr>
    
</table>

Let's start from the table markup, I will edit styling from there

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.