Want to decrease the height of the home page upper header wrap

Homepage Community Forums Epik Theme Support Want to decrease the height of the home page upper header wrap

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14980
    rajaindian
    Customer

      Dear Sir/Madam,

      Please see this issue. I had put a contact No. on the header right widget, which increases the height of Header Wrap. I have seen the coding to modify through firebug and its showing the below code:

      <aside class=”widget-area header-widget-area”>
      <section id=”text-29″ class=”widget widget_text”>
      <div class=”widget-wrap”>
      <div class=”textwidget”>
      Call Now: +91-8588851888
      </div>

      I tried to find this <aside> code in CSS of the theme but I didn’t get it. How should we can reduce this gap. Please see the below link for reference :
      https://testing-lab.com/

      #14990
      kronos
      Customer

        You can adjust the padding for that widget area on line 1977 (it’s in your style.css file)

        .header-image .site-header .widget-area {
        	padding: 1.9px 0;
        	padding: 2.5rem 0;
        }

        Just remove the padding: 2.5rem 0; line entirely, and adjust the line above it. At the moment you have it as 1.9px and it should be something different. I would change it to around 25px and start with that and adjust if you need. Here is an example –

        .header-image .site-header .widget-area {
            padding: 25px 0;
        }
      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.