• Resolved caca23

    (@caca23)


    Halo,

    I’m very happy to find your theme. It is easy to use as I am a newbie of blogging world, so I don’t really understand about the CSS.

    1)My question is I want to change the navigation colors. I did it in the customization menu, but I got the colors of the navigation menu all the same. “all is blue”.

    I really want to change each navigation menu with different color like you have at the demo session. Could you please help me? I would appreciate it.
    2) My second question is I want the slider to be displayed as “recent” post without needing to use the post code. the slider seems to be static post, so I should change it manually. So, can you help me to make it display my recent post? So when I post new articles, the slider changes as well.

    thanks in advance, hope you understand what I meant. ??

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Richie KS

    (@rkcorp)

    #menu color
    you need to setup custom menu for appeareance->menus->location->primary
    each menu item color can be setup either in their wp-admin->posts->category->edit category->edit color or edit pages->edit color

    #slider show latest posts
    enable the slider via customize->general->slider, add 1,2,3 in the category id and choose any number in category count, and save setting. this doesn’t matter anyway since we going to use hardcoded code to change it. now open mesocolumn/lib/sliders/jd-gallery-slider.php edit code line 19

    $query = new WP_Query( "cat=$featured_category&posts_per_page=$featured_number&orderby=date" );

    to

    $query = new WP_Query( "cat=&posts_per_page=5&orderby=date" );

    this should show the latest 5 post according to date.

    Thread Starter caca23

    (@caca23)

    thank you very much, your tips work perfect and my site’s appearance work great!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make Slider displays my recent post & change the Navigation Menu Color?’ is closed to new replies.