Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #111971
    francesca78
    Participant

    about the text on featured post slider , I figure the only options are:
    no text at all
    or
    unchangeable number of words.

    how can I change the colour, character size and number of words on slider photos?

    my site is: http://www.gruppoentomologicotoscano.it

    #111972
    francesca78
    Participant

    i’d like to put only the post title on the photo…
    thank you!

    #111990
    Mahesh
    Keymaster

    @francesca78: To display just post title on the slider, first enable text on the slider. Then go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    #main-slider .slides .entry-content {
        display: none;
    }

    For color and font, add the following CSS:

    #main-slider .slides .entry-title a {
        color: #00ff00;
        font-size: 50px;
    }

    Note: Adjust font-size and color as desired.

    Regards,
    Mahesh

    #112000
    francesca78
    Participant

    Thank you Mahesh!!

    #112003
    Mahesh
    Keymaster

    @francesca78: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    #113506
    francesca78
    Participant

    Dear @Mahesh, please can you tell me the code also to highlight the text on featured post slider ?

    thanks

    #113571
    Mahesh
    Keymaster

    @francesca78: What do you mean by highlight the text on post slider, can you clarify more.

    Regards,
    Mahesh

    #113586
    francesca78
    Participant

    Hi, I mean highlited text in colOur, like the yellow on this page: http://www.computerhope.com/issues/ch001391.htm
    because, depending on the colours of the photo, it’s now always simple to read the text on the slider photo.
    by the way is it possible to put the text lower in the photo, near the border?

    thanks!

    #113595
    Mahesh
    Keymaster

    @francesca78: Add the following CSS:

    #main-slider .entry-header .entry-title a,
    #main-slider .entry-content {
        color: #000000;
        background-color: #fff000;
    }
    
    #main-slider .entry-container {
    	bottom: 10%;
    }

    Regards,
    Mahesh

    #113604
    francesca78
    Participant

    thanks @Mahesh it works… the last thing: how can I change font dimension and color of the secondary menu?
    in our site:

    http://www.gruppoentomologicotoscano.it

    we’d like to change the black menu bar… it’s too long and we’d like to change the colour. we’d like to change also font dimension

    thank you really

    #113637
    Mahesh
    Keymaster

    @francesca78: Add the following CSS:

    #secondary-menu {
        background-color: #555;
    }
    
    #secondary-menu ul.menu a {
        font-size: 18px;
    }
      
    #secondary-menu ul.menu ul a {
        font-size: 16px;
    }

    Regards,
    Mahesh

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘text on featured post slider’ is closed to new replies.