-
AuthorPosts
-
January 14, 2020 at 11:55 am #1173237
Ich möchte die Schriftgröße in der Blogposts-Übersichtsseite ändern.
Überschrift sollte H3 sein, Text wie body 14
Außerdem eine Border zwischen den Blogposts in hellgrau sowie um das Widget SucheBitte um Hilfe für Quick CSS.
Noch eine Frage zur Beschriftung in der Slideshow auf Home. In der mobilen Ansicht, steht der Text dann leider mitten im Bild (was bei einem Foto sehr schlecht ist). Gibt es dafür eine Lösung?
Vielen Dank!
January 14, 2020 at 9:14 pm #1173632Hey melanie_erfrischt,
Could you please post your question in English for us so we can help better?
Best regards,
BasilisJanuary 14, 2020 at 9:47 pm #1173660I want to change the font size in the blog post overview page.
Headline should be H3, text like body 14
I also want to have a small border between the blog posts in light gray and around the Search widget
Could you please help me with the text für Quick CSS?Thanks a lot!
January 14, 2020 at 10:25 pm #1173692Hi melanie_erfrischt,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#top #s, #top #searchsubmit { border: 1px solid #ccc; } .html_header_sidebar #top .fullsize .template-blog .post .entry-content-wrapper .post_delimiter { border-bottom: 1px solid #ccc; }
If you need further assistance please let us know.
Best regards,
VictoriaJanuary 14, 2020 at 11:59 pm #1173743Hi Victoria,
Thanks for the CSS Code. It works well with the Search. The border between the blog posts isn´t exact in the middle of the posts. If it couldn´t work better, I´ll keep it with out the border.
Fontsize blog:
Correct, the blogtitle should be H3 with is 22 und the text should be 14 (like body).Thank you!!!
Best regards
MelanieJanuary 15, 2020 at 12:01 am #1173744One more question please:
is it possible to order the blog categories manually? I need them exactly the other way round. “A” at the end.January 17, 2020 at 11:32 am #1175314Hi Melanie,
Please try to add this code at the bottom of functions.php (preferrably on a child theme):
function custom_widget_categories_args($cat_args, $instance) { $cat_args['order'] = 'DESC'; return $cat_args; } add_filter( 'widget_categories_args', 'custom_widget_categories_args', 10, 2 );
Best regards,
NikkoJanuary 18, 2020 at 2:51 pm #1175826Hallo zusammen,
ich möchte die Überschriften in den Widgets meiner Sidebar ändern und das uppercase im Text entfernen, sodass nicht nur Großbuchstaben zu sehen sind. Welches CSS kann ich dafür verwenden?
Viele Grüße Sabine
January 19, 2020 at 4:29 am #1175956Hallo Sabine,
Please try the following in Quick CSS under Enfold->General Styling:
.sidebar .widgettitle { text-transform: none; font-size: 18px; }
LG,
RikardJanuary 19, 2020 at 5:03 pm #1176022Hi Rikard,
It works. Thank you.
Best regards,
SabineJanuary 19, 2020 at 8:24 pm #1176088Hi Sabine,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
VictoriaJanuary 19, 2020 at 9:15 pm #1176115Hello again,
Victoria could you please help me with my first topic concerning the fontsizes in the blog overview page and the borders?
Blogtitle should be H3 (22 pt), text like body 14 pt, subtitle 16.And the borders between the blogposts. Actually there are 3. It should be one exactly in the middle of two posts.
Thank you,
MelanieJanuary 20, 2020 at 8:09 pm #1176401Hi Melanie,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.html_header_sidebar #top #wrap_all .fullsize .template-blog .single-big .post-title { font-size: 22px; } #top .fullsize .template-blog .post .entry-content-wrapper p { font-size: 14px; } .html_elegant-blog #top .post-entry .post-meta-infos { border: none; }
If you need further assistance please let us know.
Best regards,
Victoria -
AuthorPosts
- You must be logged in to reply to this topic.