[Resolved] footer-widget css

Home Forums Support [Resolved] footer-widget css

Home Forums Support footer-widget css

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #169894
    Frederik

    Hello Tom,

    i´ve setup box-shadow for content and widgets.
    Unfortunately also footer-widgets are affected.

    how can i turn-off box-shadow for footer-widget ??

    i used this code

    /* Widget title top rounded border - may need to adjust to match border radius of widget */
    .widget-title {
          -webkit-border-top-left-radius: 10px;
          -webkit-border-top-right-radius: 10px;
          -moz-border-radius-topleft: 10px;
          -moz-border-radius-topright: 10px;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
    }
    
    /* Widget rounded corners */
    .widget {
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          border-radius: 10px;
    -webkit-box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    -moz-box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    }
    
    /* Content rounded corners */
    .inside-article {
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          border-radius: 10px;
    -webkit-box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    -moz-box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    box-shadow: 0px 0px 38px -1px rgba(223,65,16,1);
    /*rounded corners und verstecken von Seiten-Titel */
    .page-header {
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          border-radius: 10px;
          display: none;
    }
    /* Footer with less padding and without shadow */
    .footer-widgets {
    padding-top: 20px;
    padding-bottom: 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    #169896
    Frederik

    ..sorry, forgot the URL:
    http://presse-asd.spannungswechsel.de/

    #170077
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try changing .widget to .sidebar .widget.

    Let me know 🙂

    #170096
    Frederik

    Hi tom,

    perfect, that does the job. Thank you !

    #170217
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.