• 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

photastic

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
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 65 total)
← 1 2 3 4 →
  • Author
    Posts
  • August 23, 2013 at 12:02 pm in reply to: Password Page Not Working #58460
    photastic
    Member

    stupid question perhaps but did you try changing it to something else like "abcd" to make sure you entered the correct pwd?


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 23, 2013 at 11:44 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #58450
    photastic
    Member

    ok, here goes 🙂 all this code goes in the styles.css file residing under wp-content/themes/eleven40pro at the BOTTOM of the file.

    put your title on 1 line :

    div.title-area {
    width: auto;
    }
    aside.header-widget-area {
    width: 60%;
    }
    section.widget_nav_menu {
    display: none;
    }

    To have the tagline capitalized, add this piece of css to your p.mytagline :
    text-transform: capitalize;

    See if that comes out as you want it 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 23, 2013 at 1:40 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #58371
    photastic
    Member

    sent you an email...


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 22, 2013 at 10:22 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #58218
    photastic
    Member

    the p.mytagline goes into the styles.css file of your theme, not in the functions.php file 🙂

    the code has to be (seems to be a forum issue : http://pastebin.com/Lq6zMHCn


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 22, 2013 at 7:58 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #58185
    photastic
    Member

    no, it should go in the functions.php file in wp-content/themes/your-child-theme 🙂

    the a href should end with " : http://www.yourdomain.com" and no ;

    something goes wrong when pasting the code here on the forum...

    To make the tagline italic, insert this code in your theme's style.css :

    div#mytagline {
    font-style: italic;
    }

    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 22, 2013 at 12:37 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #58135
    photastic
    Member

    sorry, my bad... didn't tell you but my second post's code :

    add_filter( 'genesis_seo_title', 'my_tagline', 10,3 );
    function my_tagline() {
    	$inside = sprintf( '<a href="http://www.yourdomain.com" title="%s">%s</a><p class="mytagline">YOUR TAGLINE GOES HERE</p>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') );
    	$title = sprintf('<div class="site-title">%s</div>', $inside );
    	return $title;
    }

    needs to go into your theme's functions.php file and not in your css file 🙂

    Try that out first and then we'll see for styling the rest 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 6:34 am in reply to: padding etc on the sidebar #57892
    photastic
    Member

    looking at the code again, you have to target the element like this (I think) :

    div#text-50 .textwidget { padding: 0px; }

    and make sure that line is under the css for the div.textwidget.

    I'm also still figuring out css so I could be wrong 😉


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 6:29 am in reply to: padding etc on the sidebar #57888
    photastic
    Member

    in the style for the video widget, you can add : padding: 0px; and if that css comes after your 10 px padding on div.textwidget, the padding should be removed from the videowidget.

    Sometimes it's a matter of putting the css in the right order to achieve another result 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 5:48 am in reply to: padding etc on the sidebar #57873
    photastic
    Member

    try adding your style to div#test-50. you can add margin-top to have it aligned but before you do this, move the social icons widget above the movie so you can trial how much margin you need to have it aligned.


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 5:28 am in reply to: Comment by Author Styling #57869
    photastic
    Member

    you can target your comments by using the li.byuser or li.comment-author-tstjean (or the equivalent class for your collegue-admin and so style the divs inside too :

    li.comment-author-tstjean .comment-header {
    background: red; //* or a better background ;)
    }

    If you use Google Chrome's developper tools, you can then find out which other elements you need to target for your layout.

    Hope this gets you on your way 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 3:34 am in reply to: Screen Options stuff missing #57865
    photastic
    Member

    Using the most recent version of Genesis?
    If so, try reuploading both master & child theme and see if problem is solved...


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 3:31 am in reply to: How to Remove Archive from Title? #57864
    photastic
    Member

    after some googling around, this could be caused by the Yoast plugin you have installed...
    Can you deactivate that and see if the problem persist?

    Found some info on this page : http://wordpress.org/support/topic/wp-seo-changes-homepage-title


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 3:21 am in reply to: Credits Necessary? #57863
    photastic
    Member

    as far as I know, credits aren't mandatory. If you developped the site for your client and you have the appropiate license at StudioPress, all is well I suppose 🙂

    I think it's more or less being put in the SP FAQS : http://www.studiopress.com/faqs#clients


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 2:51 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #57861
    photastic
    Member

    This should do the trick for a custom tagline underneath the title :

    add_filter( 'genesis_seo_title', 'my_tagline', 10,3 );
    function my_tagline() {
    	$inside = sprintf( '<a href="http://www.yourdomain.com" title="%s">%s</a><p class="mytagline">YOUR TAGLINE GOES HERE</p>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') );
    	$title = sprintf('<div class="site-title">%s</div>', $inside );
    	return $title;
    }

    you can then style the title by targetting it in css like in my previous post.
    To edit the tagline, target it like this in your style.css :

    p.mytagline {
    	font-size: 50px;
    	color: red;
    }

    Hopefully I made myself clear 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 2:18 am in reply to: Change Header Title and Tagline in eleven40 Pro/Genesis 2.0 #57859
    photastic
    Member

    here you go, add these styles to style.css which is sitting in your Eleven40 Pro theme folder :

    header title :

    .site-title {
    	font-size: 50px; //* or whatever value you want ;)
    }

    menubuttons font :

    .site-header .genesis-nav-menu li {
    font-size: 35px;
    }

    The extra tagline is a bit more complicated but I'll try to get some working code for you.

    It also helps if you provide us with a link to your website 🙂


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 21, 2013 at 2:09 am in reply to: Background Colour in Sidebar #57857
    photastic
    Member

    great you figured it out Roger 🙂

    You can do real magic (pun intended 😉 ) with CSS 🙂

    Make sure you label the topic as "Resolved" if you're done 😉


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 20, 2013 at 4:43 pm in reply to: Background Colour in Sidebar #57791
    photastic
    Member
    div.textwidget {
    padding: 10px; //* this adds 10px to all sides, left, top, bottom, right
    padding-right: 10px; //* this adds only 10px padding to the right side and same goes for padding-left, -top, bottom
    }

    this should pad only the inside text...


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 20, 2013 at 4:29 pm in reply to: Add area outside of wrap #57780
    photastic
    Member

    remove the background from your #wrap :

    #wrap {
    background: none;
    }

    and add transparent background to your new widget area :

    #cta {
    background: transparent;
    }

    that should make it transparent...


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 20, 2013 at 4:22 pm in reply to: Use Genesis core as child theme #57777
    photastic
    Member

    http://my.studiopress.com/docs/child-themes/ 😉 second paragraph and beyond 🙂

    perhaps a good idea to download and activate the Genesis Sample theme?


    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

    August 20, 2013 at 4:17 pm in reply to: Background Colour in Sidebar #57775
    photastic
    Member

    if you want padding to all text widgets, add this code :

    div.widget_text {
    padding: 10px; //* this adds 10px to all sides, left, top, bottom, right
    padding-right: 10px; //* this adds only 10px padding to the right side and same goes for padding-left, -top, bottom
    }

    Trying to craft webstuff at Photastic Webdesign
    Learning Genesis by solving unanswered topics

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 65 total)
← 1 2 3 4 →
« Previous Page

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