• Hello, I want to change the alignment of the title of a specific widget “gestion de redes sociales” but when I try to change it will all change on the page.
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi trendingmediavzla,
    can you provide URL of your website? It is easier to help.
    Cheers
    TR

    Thread Starter trendingmediavzla

    (@trendingmediavzla)

    Of Course!
    I forget it, my website is https://trendingmediavzla.com/ Thanks!

    Hi trendingmediavzla
    Im not sure what you want to do with it. Widgets are aligned to center, there are 3 columns each has 1/3 of the space.
    So What change do you need??
    Cheers
    TR

    Thread Starter trendingmediavzla

    (@trendingmediavzla)

    I want to change the alignment of the widget title “gestion de redes sociales” to the left, but only this widget title.

    Hi trendingmediavzla,
    That was tough one ??
    It works here in Chrome Dev Tools.
    Here is some explanation for nth-of-type

    ….and Useful :nth-child Recipes

    put this code to your Child Theme style.css file
    OR
    Install Simple Custom CSS plugin and put the code there.
    I’m doing this on my browser to find solution.
    It can get to some different behavior on your site.
    It can happen that it is not working.
    Then we have to look further.

    .service.col-md-4:nth-of-type(3n+1) p:nth-of-type(2) {
        text-align: left;
    }
    
    or
    
    .service.col-md-4:nth-of-type(3n+1) p:nth-of-type(2) {
        text-align: left!important;
    }

    Hope I was helpful
    Cheers
    TR

    • This reply was modified 8 years, 6 months ago by Tahoerock.
    • This reply was modified 8 years, 6 months ago by Tahoerock.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change aligment of one individual widget title.’ is closed to new replies.