• I want to change the font colour for navigation menus I’ve added to FRONT PAGE One, Two and Three widgets. I tried a number of additional CSS, but I’m unable to change it from the default red colour palette.

    this was my latest try

    .widget_front_page_one f{
    color: #3471eb;
    }

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there,

    To change the color of widgets title you can use this code:

    .widget-title {
        color: #242424;
    }

    For the links in those widgets you can use this one:

    a {
        color: #e74f4e;
    }

    Please note that the above code will change the color of all the links in your site. It’s not possible to only change the color of the text in these widgets without affecting other parts of the site.

    Thread Starter csoundar

    (@csoundar)

    Ah thanks. I do want to change only the text colour and link colour of the menus I use in the widget. Looks like that’s not possible.

    Unless I’m missing something obvious you should be able to target just the homepage of the site and those widgets using the following CSS

    .home .front-page-widget-wrapper .widget-title {
    	color: red;
    }
    
    .home .front-page-widget-wrapper li a {
    	color: black;
    }

    Just adjust the color values to your liking.

    @jarretc is correct. Thank you for the input ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Front Page One, Two, Three Widgets’ is closed to new replies.