• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Slider Customization

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Slider Customization

This topic is: resolved
  • This topic has 14 replies, 2 voices, and was last updated 13 years ago by angieatc.
Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • June 11, 2013 at 6:35 am #45227
    angieatc
    Member

    Sorry if this is a double post. My original post does not appear.
    I need some help with the slider on my site.

    I have the slider h2 coded like this:

    .slide-excerpt-border h2 a,
    .slide-excerpt-border h2 a:visited {
    color: #fff !important;
    font-family: 'Copse', serif !important;
    font-size: 30px;
    font-style: italic;
    line-height: 1;
    margin: 0;
    text-align: center !important;
    }

    It will not center at all but will take on all other colors, size, etc. So then I use this for the hover:

    .slide-excerpt-border h2 a:hover {
    color: #efc936 !important;
    }

    and nothing! Any help please? What is up with having to use !important on almost everything?


    My design site, Hill Springs Designs

    http://test2.strosgirldesigns.com/
    June 11, 2013 at 8:35 am #45244
    rfmeier
    Member

    Hello,

    It technically was centering, but the .slide-excerpt-border box was only wide enough to accommodate the title width. I did the following and was able to center the text;

    /* line ~42 */
    html > body .slide-excerpt-border {
    	background: none;
    	border: 1px solid #ddd;
    	display: inline;
    	float: left;
    	margin: 10px;
    	padding: 14px;
    	position: relative;
    	z-index: 8;
    	width: 648px; /* set a static width */
    	text-align: center; /* set alignment to center.  Child elements should inherit. */
    }

    I hope this helps.


    Ryan Meier – Twitter

    June 11, 2013 at 8:41 am #45246
    angieatc
    Member

    Thank you! I had forgotten I removed the width from it when I copied the code from another site I had designed.

    Angie


    My design site, Hill Springs Designs

    June 11, 2013 at 8:44 am #45248
    rfmeier
    Member

    Angie,

    You are welcome.

    As I think about it, you may want to setup a width / max-width combo for responsiveness like below;

    /* line ~42 */
    html > body .slide-excerpt-border {
    	background: none;
    	border: 1px solid #ddd;
    	display: inline;
    	float: left;
    	margin: 10px;
    	padding: 14px;
    	position: relative;
    	z-index: 8;
    	width: 100%; /* expand it */
    	max-width: 648px; /* set a max width */
    	text-align: center; /* set alignment to center.  Child elements should inherit. */
    }

    Ryan Meier – Twitter

    June 11, 2013 at 8:45 am #45249
    angieatc
    Member

    Now you have lost me. Would I need to because I am using the responsive slider?


    My design site, Hill Springs Designs

    June 11, 2013 at 8:47 am #45251
    rfmeier
    Member

    Angie,

    Never mind. There is css already taking care of this when the screen is re-sized. Carry on. 🙂


    Ryan Meier – Twitter

    June 11, 2013 at 1:12 pm #45333
    angieatc
    Member

    Thanks for your help!


    My design site, Hill Springs Designs

    June 11, 2013 at 1:29 pm #45337
    rfmeier
    Member

    You are welcome. I am glad I could help.


    Ryan Meier – Twitter

    June 14, 2013 at 6:23 pm #46003
    angieatc
    Member

    Ok, I need some help with this again please! I had to change themes to Serenity for the client and I have changed the widths in the Genesis Slider settings and in the CSS and the images are weird and my post title in the slider is jacked up as well.

    html > body .slide-excerpt-border {
    background: none;
    border: 0 solid #ddd !important;
    display: inline;
    float: left;
    margin: 10px;
    padding: 14px;
    position: relative;
    z-index: 8;
    width: 700px; /* set a static width */
    text-align: center;
    }
    Post Title

    .slide-excerpt-border h2 a,
    .slide-excerpt-border h2 a:visited {
    color: #fff !important;
    font-family: 'Copse', serif !important;
    font-size: 30px;
    line-height: 1;
    margin: 0;
    text-align: center !important;
    }

    Just curious if you could take a look at it as you were the only one to figure out the other issue I was having.

    Thanks


    My design site, Hill Springs Designs

    June 15, 2013 at 9:07 am #46090
    rfmeier
    Member

    Angie,

    Is a site demo available to look at?


    Ryan Meier – Twitter

    June 15, 2013 at 9:52 am #46100
    angieatc
    Member

    Oh crap, it is the same site. I am sorry. Same link!

    http://test2.strosgirldesigns.com/

    I am an idiot!

     


    My design site, Hill Springs Designs

    June 15, 2013 at 4:29 pm #46177
    rfmeier
    Member

    Angie,

    Here is what I got so far;

    /* line ~738 */
    #featured-bottom ul, #featured-top ul {
            list-style-type: square;
            margin: 0; /* changed to 0 */
            padding: 0; /* changed to 0 */
    }
    
    /* line ~744 */
    #featured-bottom ul li, #featured-top ul li {
            list-style-type: square;
            margin: 0; /* changed to 0 */
            padding: 0;
    }

    The image alignment still isn't quite right and it is hard to figure out with the slider constantly moving. I will take a look at it again in a bit.


    Ryan Meier – Twitter

    June 15, 2013 at 4:35 pm #46183
    angieatc
    Member

    OK so far so good! I will look at it again tonight. The sizes are all correct (width wise) but I have no idea where the grey border is coming from.

    Thanks!


    My design site, Hill Springs Designs

    June 16, 2013 at 7:24 am #46249
    angieatc
    Member

    Ryan,

    They are switching back to the Adorable theme so I think I am good because the customization from before is still there. Thanks again for all of your help!

     


    My design site, Hill Springs Designs

    July 12, 2013 at 1:43 pm #50425
    angieatc
    Member

    Ok, I am back, I thought I had this down but when I went to switch back over to the Adorable theme the customization for the slider was gone. I am having an issue with the next slider post title going into the current slider. Here is the site: http://69.195.124.58/~homegrr7/ would there be anyway you could see what is going on? I am going to slow it down just in case you can look at it.

    Thanks


    My design site, Hill Springs Designs

  • Author
    Posts
Viewing 15 posts - 1 through 15 (of 15 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble