New Topic

Create columns

Home › Forum › Help › Create columns

Tagged: 

This topic contains 3 replies, has 2 voices, and was last updated by  StartupWP 5 years ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1505

    abbybellard
    Participant

    ON THIS SITE: http://www.abbyscomputertutors.com/
    I would like to
    1. change the font size
    2. have columns
    3. take off the shadow on the page around site
    4. Take out some of the space between my content area and my email and phone

    I am not great with coding..

    I have startup pro

    I am not great with coding. Any ideas for me?

    #1507

    StartupWP
    Keymaster

    No worries, when you need it, we can provide the code, you only need to paste it in. :)

    1. More specific please.

    2. More specific please.

    3. Looks like you figured it out:

    #container, #breadcrumbs, #twitter-feed {
      box-shadow: none;
    }

    But, you’ll want to make sure to add new CSS to your theme options (https://startupwp.com/topic/customizing-your-theme/) or they’ll be overwritten next time you upgrade.

    4. Use:

    #social {
      margin-top: 10%;
    }
    #1511

    abbybellard
    Participant

    Thank you very much. I would like to have two or three columns on my pages, to create less scrolling. How do you think I should do this?

    You are wonderful to help me.

    #1512

    StartupWP
    Keymaster

    If you’re not intending on using sidebars, one place to start would be to make the content area full-width:

    #content {
      width: 96%;
    }
    #sidebar {
      display: none;
    }

    As far as columns, assuming you mean for posts listed in the blog, we should be able to help with this once you’ve started creating posts.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.