• Hi I am using the full page bc I am not adding widgets on a sidebar on any of my pages.
    Wondering how I can force an indent so the text doesn’t run the whole width of the open window. THANKS

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter reganschaffer

    (@reganschaffer)

    Also I put in a FOOTER LAST with navigation on my KALE site but the menu tabs are showing up centered with a LOT of margin and I would rather they be on one line.

    Thread Starter reganschaffer

    (@reganschaffer)

    Also on the bottom of site I have 2 black lines can I have the navigation info INSIDE the bars in stead of below them?THANKS!!!

    Hello, reganschaffer.

    Thank you for contacting us and for using our theme, we appreciate it.

    This CSS should put the menu in the footer in one line (and I don’t see two black lines there):

    .footer-row-3-center ul {
    	display: inherit;
    }

    And this CSS should limit the space taken by the text on the homepage and make “an ident”:

    @media (min-width:1024px) {
    	.home .page-content { width: 70%; margin-left: 20%; }
    }

    The first %value narrows the space taken by the text and the second %value makes an indent to the right. I don’t know if this is what you wanted by I hope you can play with the values to get what you want.

    Please insert it to Appearance -> Customize -> Additional CSS.

    If you have any additional questions, feel free to ask.

    Kind regards.

    Thread Starter reganschaffer

    (@reganschaffer)

    Thank you the CSS worked to get NAV on one line in footer but added “Kale by Lyra Themes.com” How can I take that out 🙂

    @media (min-width:1024px) {
    .about .page-content { width: 70%; margin-left: 10%; }
    }
    Worked for indent on HOME page how can I make that universal for all the text on the entire site? It look so much better than the indent I added to do the same thing especially when I look at the site format on a phone screen size.

    AND LASTLY
    Is there a way not to have HOME appear over the image on the first page as a

    Thank you!! I appreciate your fast help on these matters.

    You’re welcome.

    Let’s solve the remaining issues. 🙂

    This will take care of the “Kale by…”:
    ul.credit { display: none; }

    If you want the above code to apply to all pages, simply remove .home part so it looks like this:

    @media (min-width:1024px) {
    	.page-content { width: 70%; margin-left: 20%; }
    }

    And in order to remove HOME, use this:
    .home .entry-page h1.entry-title { display: none; }

    I suppose this would be all? If you have any other questions, just ask. 🙂

    Kind regards.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘INDENT TEXT full page’ is closed to new replies.