Home Forums WoodMart support forum Replace an icone by an image in portfolio

Replace an icone by an image in portfolio

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #497966

    Fredcasas
    Participant

    Hi the team,
    In the portfolio project page, I would like to change the foursquares icon (back to portfolio list) by an image.
    How can I do that please?
    Thanks
    Fred

    Attachments:
    You must be logged in to view attached files.
    #498531

    Artem Temos
    Keymaster

    Hi,

    – In order to do that, add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .single-portfolio .back-to-archive:after {
        background-image: url(put src of image);
    	width: 47px;
    	height: 47px;
    	color: transparent; 
    }

    You can change height & width values equal to background image.

    Regards

    #498564

    Fredcasas
    Participant

    Hi the Team,

    Thanks a lot, it works, another question please :

    I changed the label text “back to archive ” by ” back to site”, it works well but I would like to change the color of the background (black to orange) the color of the little arrow (blak to orange) and the color of the text (white to grey).

    How doing that please.

    Thanks and have a nice weekend.

    Fred

    #498647

    Artem Temos
    Keymaster

    Hi,

    In order to do that, add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .wd-page-nav{
    	background-color: #FFA500;
    }
    
    .wd-page-nav .wd-page-nav-icon{
    	color: #FFA500;
    }
    
    .wd-page-nav .wd-entities-title,
    .wd-page-nav .wd-label{
    	color: #808080;
    }

    Regard

Viewing 4 posts - 1 through 4 (of 4 total)