-
AuthorPosts
-
April 19, 2023 at 5:26 am #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?April 19, 2023 at 6:28 am #1404899Hey 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,
IsmaelApril 20, 2023 at 5:51 am #1405014And I don’t want the heading like H1, H2 to be all capitalized, just capitalize the first letter. where should I modify it?
April 20, 2023 at 12:22 pm #1405039And 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.
April 22, 2023 at 5:51 pm #1405239Hi,
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,
MikeApril 23, 2023 at 6:51 am #1405271I 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?
April 23, 2023 at 6:54 am #1405272And 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.April 23, 2023 at 2:26 pm #1405284Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.