• Resolved marcello8080

    (@marcello8080)


    Hi, I hope you guys are fine.

    I’d like to modify the layout of the portfolio in my homepage. Please have a look to the project I’m working on: dev.chaletchardons.com

    I’d like to put two images before and later the portfolio title (in my case our chalets), and I’d like to display permanently the name of the portfolio, not only HOVER.

    What file should I modify for that?

    Many thanks
    Marcello

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey,

    1, This isn’t an option in the free theme. There is only one “page content and unlike premium you don’t have the extra widget options that can make any layout. I can only suggest using a child theme and custom editing the home page template but that would require a decent amount of coding skills.

    2. You can use this css in your theme options > advanced settings:

    .portfolio_item .portfoliolink {
        ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

    Kadence Themes

    Thread Starter marcello8080

    (@marcello8080)

    Thanks a lot!!!! your code works perfectly.

    I may found a way to modify the portfolio title using CSS, if you eventually provide me the php page with the portfolio code I’ll try to modify the php code to modify the title.

    Here is the CSS code:

    /* customize title of portfolio "our chalet" */
    h3.hometitle::before {
        content: url('/wp-content/uploads/2015/07/tignes_logo-e1439372431394.jpg');
        margin-right: 20px;
    }
    h3.hometitle::after {
        content: url('/wp-content/uploads/2015/08/valdisere-banner-e1439372852767.jpg');
        margin-left: 20px;
    }

    Thanks again
    Marcello

    Thread Starter marcello8080

    (@marcello8080)

    I forgot,
    have a look to the homepage:
    dev.chaletchardons.com

    Marcello

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Modifing portfolio in homepage’ is closed to new replies.