Moved: Reply To: Genesis Slider & Featured Posts styles

Homepage Community Forums Epik Theme Support Moved: Reply To: Genesis Slider & Featured Posts styles

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #13408
    gillesdiaz
    Customer

      Hello Wes or anyone willing to help,
      I did manage to change the background color of the slider widget area to #fff, the thing is that there is a frame still with the original color of the theme.
      The other question has to do with the responsive part of the theme, almost in every size is working perfectly but when it comes to around 1024px is cutting my logo
      http://mercadeoonline.com.co/

      Thanks in advance

      #13430
      Wes
      Moderator

        Hello @gillesdiaz I moved this to a new thread since it’s a separate topic.

        What you’re seeing is margin/padding space on top and bottom of the slider area. The top is created with the .head-wrap margin bottom. You can add this to your css to remove that and it will only affect the homepage –

        
        .home .head-wrap {
        	margin: 0;
        }

        To remove some of the space under the slider, look at line 1218 and adjust the margin-bottom (20px) –

        .slider .wrap {
            margin: 0 auto 20px;
            padding: 0;
            width: 1140px;
        }

        Then for the final step, take a look at line 1224 and remove the margin that shows up at the bottom of each widget –

        .slider .widget {
            margin: 0 0 20px;
        }

        For the logo being cutoff: Look around line 4009 and you’ll see this –

        	.sidebar-primary,
        	.title-area {
        		width: 300px;
        	}

        You could add this right under that code above –

        .header-image .site-title a {
            background-size: contain !important;

        }

        Or you could separate the title-area and change the width to 360px…..but you’ll have to adjust the widget area to a different width so both sections will fit.

        #13443
        gillesdiaz
        Customer

          It didn’t work Wes,
          Before your replay I did that after following one of the forum topics.

          This is the image of the logo at the point when shows cutted
          line of code placed as told

          I’m not seeing the social media bar on large monitors this is the mesage I recive when on a diferent page than the home page Warning: in_array() [function.in-array]: Wrong datatype for second argument in /home/gillesdi/public_html/wp-content/plugins/floating-social-bar/class-floating-social-bar.php on line 941

          Thanks for helping Wes

          #13446
          Wes
          Moderator

            It’s working – http://i.imgur.com/fX8jqup.png

            For this screenshot, I have the browser resized to 1024px as mentioned above. You may want to hit your reload button to clear your browser cache to see your latest changes.

            You’ll have to contact the developer of that social plugin for any issues you’re having with it since it’s a 3rd party external plugin.

            #13450
            gillesdiaz
            Customer

              Thanks a lot Wes

              #13454
              Wes
              Moderator

                You’re Welcome!

                Make sure and send me a link to the showcase when you’re done with your site – https://appfinite.com/showcase-your-site

              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Moved: Reply To: Genesis Slider & Featured Posts styles’ is closed to new replies.