Topic Resolution: Resolved
  • Closed
  • Jon Green
    Spectator
    May 7, 2015 at 12:56 am #17328

    Hi,

    I’ve come across a bit of a stumbling block which after quite some hours, haven’t been able to solve…

    http://paulgreenhifi.co.uk/

    In my site I’d like to remove the borders either side of the main menu bar (top white line and bottom dark line) and also adjust the font in the news widget on the right (font, size and colour).

    I can’t seem to find these options in the theme options.

    Thanks, Jon

    Roman
    Spectator
    Posts: 3147
    May 7, 2015 at 10:15 am #17341

    Appearance -> Theme Options -> Custom CSS:

    .header-v4 #header,
    .header-v4 #small-nav,
    .header-v5 #small-nav {
    border: 0;
    }
    #sidebar #jtwt .jtwt_tweet,
    #sidebar #jtwt .jtwt_tweet a {
    font-size: 15px;
    font-family:georgia;
    color:#fff;
    }

    Jon Green
    Spectator
    Posts: 11
    May 7, 2015 at 11:37 am #17348

    Thank you! The borders have removed successfully although the side widget is actually links to out posts rather than tweets. So the second part of CCS you listed didn’t work.

    Roman
    Spectator
    Posts: 3147
    May 7, 2015 at 12:58 pm #17351

    try to use !important tag:

    #sidebar #jtwt .jtwt_tweet,
    #sidebar #jtwt .jtwt_tweet a {
    font-size: 15px!important;
    font-family:georgia!important;
    color:#fff!important;
    }

    I didn’t test it, just an idea

    Jon Green
    Spectator
    Posts: 11
    May 7, 2015 at 1:17 pm #17353

    Sorry, no what I meant was, the sidebar widget is a link to our posts and not tweets. The CSS idea you sent refers to tweets and not to a posts widget

    Roman
    Spectator
    Posts: 3147
    May 7, 2015 at 1:44 pm #17354

    sorry, here you go:

    #sidebar .widget li,
    #sidebar .widget li a {
    font-size: 15px!important;
    font-family:georgia!important;
    color:#fff!important;
    }

    Jon Green
    Spectator
    Posts: 11
    May 7, 2015 at 2:32 pm #17356

    Great stuff thank you!