TDEDITOR Aesthetic Questions

  • Unknown's avatar

    Hi,

    I have few questions on the theme im currently using, tdeditor.

    1. Can I make the header stretch from end-to-end without leaving any white space? what is the right size for tdeditor’s header?

    2. I chose a one column layout without showing any sidebar on category pages (click tab Facts, Interesting, Opinions, Story). The text starts mid-page. any chance i can align the text left?

    3. When at homepage, a “read more” box is displayed below my excerpt. any chance i can change the colour? currently it is grey colour. i want to change it to white with a black outline, make my page more sleek and clean like newyorker.com page. Is it possible?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    1. Can I make the header stretch from end-to-end without leaving any white space? what is the right size for tdeditor’s header?

    The tdeditor theme does not actually have a custom header feature, it has a custom logo. I’m not sure why at Appearance > Custom Logo it is showing a height of 0 pixels. I’ll check on that for you and get back to you with the correct size and also get that corrected in the Customizer.

    2. I chose a one column layout without showing any sidebar on category pages (click tab Facts, Interesting, Opinions, Story). The text starts mid-page. any chance i can align the text left?

    The maximum width for the content area is set for the best readability. If text lines are too long, then text becomes harder to read. You can increase the width of the content area by adding the following custom CSS and then increasing the 42em max-width value.

    .blog-one-column .hentry .hentry-inner {
        max-width: 42em;
    }

    3. When at homepage, a “read more” box is displayed below my excerpt. any chance i can change the colour? currently it is grey colour. i want to change it to white with a black outline, make my page more sleek and clean like newyorker.com page. Is it possible?

    To change the text and background colors on the Read More box with the following CSS. Edit the color codes as desired.

    .hentry .more-btn a {
        background: #f9f9f9;
        color: #aaaaaa;
    }

    There is also a hover color on the text in the Read More. You can use the following to change that.

    .hentry .more-btn a:hover {
        color: #313131;
    }
  • The topic ‘TDEDITOR Aesthetic Questions’ is closed to new replies.