Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1404892

    I can’t find the place to change the fonts size and colors and background for the sidebar.
    Now the font is too small and there is no separation from the main content part.
    The font color should be #0e4174, and when hovering, it should change to #a11218, the font size of the parent page should be bigger than the child page.
    And the child page titles should be indented.
    Can you help me?

    #1404899

    Hey Alison,

    Thank you for the inquiry.

    You should be able to change the style of the widgets in the Enfold > Advanced Styling panel. Look for the Misc section in the dropdown, then select the Widgets (widget, title, links) element.

    And to apply more styles, you can add your own css modifications in the Enfold > General Styling > Quick CSS field.

    Example:

    #top #main .sidebar {
        background: red;
        padding-right: 50px;
    }
    

    This css should apply a red background to the sidebar container.

    Best regards,
    Ismael

    #1405014

    And I don’t want the heading like H1, H2 to be all capitalized, just capitalize the first letter. where should I modify it?

    #1405039

    And one more thing, I don’t want to title on the left of the breadcrumb to be H1 automatically, how can I delete this H1. I will define the H1 in every single page of content.

    #1405239

    Hi,
    To change the capitalizion of your special heading elements and the footer widget titles try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top h2.av-special-heading-tag,
    #top h3.widgettitle {
    	text-transform: capitalize;
    }

    After applying the css, please clear your browser cache and check.
    To remove the H1 tag from the post title bar try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
      $('.main-title.entry-title').contents().unwrap();
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1405271

    I bought the theme in themeforest, buy I didn’t see a child theme when I download all files & documents. Do I make a mistake in any steps?

    #1405272

    And when I insert a parameter table in the text block, the font size is small than main content, how to change the size for the content in the table?
    I paste the link below.

    #1405284

    Hi,
    The child theme in the theme zip file with the documentation, Read our documentation about using a Child Theme
    Or I linked to the latest child theme below.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.