Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #62084
    SARAH
    Participant

    Hi,

    three questions don’t find any answers for me.

    1- I don’t find how to use the option “more”. In the chapitre modify page I see the button, but I don’t understand how I can use it. (step by step),

    2- I try to change font size (preformated smaller, title bigger), but I don’t now how to use Custom CSS box,

    3- Is it possible to insert picture in widget ?

    (do you need my website ? http://jardindeshetres.fr/)
    Please excuse my english, it is very bad…

    Thank you very much,

    #62128
    Sakin
    Keymaster

    @bertolotti:
    1. I don’t understand what do you mean by use the option “more”. If you are talking about more button in your post. That that is used for splitting content for archive pages. Read more about it at http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/. So, if you have blog and set it up as “Show Full Content” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”. This this breaks the text when you add that more tags. But it’s not useful when you are using expert layout.

    2. We don’t recommending changing font as it’s responsive design and it changes as per the screensize. But if you want to change it, then you can change the font size in the following css and add it in “Appearance => Theme Options => Custom CSS Options” box. It will change font for

    @media screen and (min-width: 991px) {	
        /* Default Font Sizes */
        body, button, input, select, textarea {
            font-size: 15px;
        }
        /* Title Font Sizes */
        .entry-title, 
        #promotion-message h2, 
        #featured-content #featured-heading {
            font-size: 30px;
        }
        /* Sidebar Widget Title Font Sizes */
        .sidebar .entry-title, .widget-title {
            font-size: 20px;
        }
    }

    3. Yes, you can insert picture in widget. You can drag and drop “CT: Advertisement” widget to your sidebar from “Appearance => Widgets” and then add your image URL in “Image Url” box.

    #62211
    SARAH
    Participant

    Thank you.

    for the question 1 it is not OK for me. I clic on the “insert more tag” button, but there is no result on my web site.

    this is the code :

    essai de texte essai de texte
    essai de texte essai de texte essai de texte
    essai de texte essai de texte essai de texte
    essai de texte

    <!–more–>

    texte caché texte caché texte caché texte caché texte caché texte caché

     

    And there is no result.

    T create a page for a test, call “essai de texte caché”, you can see it.

    http://jardindeshetres.fr/essai-de-texte-cache

    Thank you

    Sarah

    #62348
    SARAH
    Participant

    Excuse me,
    can you answer my question ?
    I realy need to use this function.

    thank you,

    Sarah

    #62673
    Sakin
    Keymaster

    @bertolotti: That more tag is only for archive/blog page when you want to show full Content layout options and want to break content. It doesn’t have any effect on page/post. If you are looking to break page content and add pagination then you need to use <!--nextpage--> tag. Read more about it here https://en.support.wordpress.com/splitting-content/nextpage/

    #65526
    Kim
    Participant

    I did tack this question onto another question I have going in another area, but I guess it belongs here? Is there anyway to center the images in the CT Advertisement widget? or to center the widget itself in the menu? I’ve got this widget in my footer 4 menu — http://mcshin.org/mcwp

    #65537
    Sakin
    Keymaster

    @Kim: ok you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .widget_widget_catchbase_adspace_widget img {
        display: block;
        margin: 0 auto;
    }
    #65648
    Kim
    Participant

    Thank you!
    Worked perfectly!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘use "more" option / change font size / photos in widget’ is closed to new replies.