Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #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 Suche

    Bitte 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!

    #1173632

    Hey melanie_erfrischt,

    Could you please post your question in English for us so we can help better?

    Best regards,
    Basilis

    #1173660

    I 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!

    #1173692

    Hi 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,
    Victoria

    #1173743

    Hi 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
    Melanie

    #1173744

    One more question please:
    is it possible to order the blog categories manually? I need them exactly the other way round. “A” at the end.

    #1175314

    Hi 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,
    Nikko

    #1175826

    Hallo 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

    #1175956

    Hallo Sabine,

    Please try the following in Quick CSS under Enfold->General Styling:

    .sidebar .widgettitle {
        text-transform: none;
        font-size: 18px;
    }

    LG,
    Rikard

    #1176022

    Hi Rikard,

    It works. Thank you.

    Best regards,
    Sabine

    #1176088

    Hi Sabine,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1176115

    Hello 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,
    Melanie

    #1176401

    Hi 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

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