• 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

vajrasar

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 - 121 through 140 (of 172 total)
← 1 2 3 … 6 7 8 9 →
  • Author
    Posts
  • April 22, 2013 at 6:03 am in reply to: Altering author.php #36852
    vajrasar
    Member

    @brian-gardner:

    I added the facebook and twitter fields which now shows up for Author whenever somebody goes onto their posts and that is perfect.

    Now, when anyone clicks on author's link then it gets redirected to the archive where on the top it only shows the biographical info of the author. How can I add the Website, Facebook, Twitter field info there?

    Thanks.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 20, 2013 at 9:17 am in reply to: WordPress/Genesis Install Checklist #36565
    vajrasar
    Member

    You may refer to this -

    1) Smashing Mag

    2) WpMentor


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 7:07 am in reply to: Post Font Styling Issues #35547
    vajrasar
    Member

    put it anywhere (maybe in the last) of style.css [appereance -> editor -> style.css]

    the "!important" attribute will make sure that it override any of the previous such property.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 12:46 am in reply to: Text Area Font Change #35518
    vajrasar
    Member

    I think adding this in the stylesheet may work

    p {
    font-family: Trebuchet MS !important;
    }


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 12:44 am in reply to: Post Font Styling Issues #35517
    vajrasar
    Member

    I think adding this in the stylesheet may work

    p {
    font-family: Trebuchet MS !important;
    }


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 12:39 am in reply to: Changing thumbnail size of Landscape gallery images #35515
    vajrasar
    Member

    please provide the link to the site.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 12:38 am in reply to: Mocha: Disappearing Primary Nav with FireFox #35514
    vajrasar
    Member

    How about doing

    .menu-primary {
    position: fixed;
    }


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 15, 2013 at 12:35 am in reply to: Advice for Social Buttons in Each Post Needed #35513
    vajrasar
    Member

    There are many plugins available for that -

    http://wp.smashingmagazine.com/2012/02/22/25-social-media-plugins-wordpress/


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 13, 2013 at 9:18 am in reply to: Footer Width and Background #35216
    vajrasar
    Member

    According to me, Footer is mixed in content-sidebar-wrap. You can see Footer on main site in seperated from content-sidebar-wrap so can attain different width. But in New site its mixed up with content-sidebar-wrap so it is not getting its own size and taking the 'inner'  size.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 13, 2013 at 9:09 am in reply to: how to rename wp-admin url in genesis? #35215
    vajrasar
    Member

    I have no clue and was trying for the same, but am using this plugin right now -

    Stealth Login Page


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 10, 2013 at 10:56 am in reply to: Can I create a Home Widget that sits underneath the logo on home page only? #34575
    vajrasar
    Member

    Am really glad it worked. Now, for the first part of your problem as you said you have made a custom widgetized template and want to show that fish widget only on front page then you can wrap the code producing that fish widget inside is_front_page() if-else loop.

    like -

    if (is_front_page()) {
    //do widget code
    }

    I think this may help you.

    Else if you are using Appereance -> widget to place code using a text widget then you can

    1) enable php in widgets by putting this code in functions.php

    add_filter('widget_text','execute_php',100);
    function execute_php($html){
    if(strpos($html,"<"."?php")!==false){ ob_start(); eval("?".">".$html);
    $html=ob_get_contents();
    ob_end_clean();
    }
    return $html;
    }

    and then place the code you pasted/wrote in the text widget inside if-else loop as -

    if (is_front_page()) {
    //put fish code/image
    }

    I hope it helps.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 10, 2013 at 9:17 am in reply to: Can I create a Home Widget that sits underneath the logo on home page only? #34536
    vajrasar
    Member

    Give this to your fish widget (in css)

        position: absolute;
        top: 12px;
        z-index: 9999;

    and this in

    #title-area {

        position: absolute;
        z-index: 99999;

    }

    That may solve one part of your problem.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 10, 2013 at 8:57 am in reply to: Sample Theme header colour #34524
    vajrasar
    Member

    try this -

    Appereance -> Editor -> Style.css

    Find #header

    #header {

    background: white !important;

    }

    Change white to any color you want. I think this may help you.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 8, 2013 at 2:49 am in reply to: Author page – if no BIO, show some text. #33926
    vajrasar
    Member

    I meant that you can use get_the_author_meta('description') to suit your need by using it in the if-else loop based on the availability or null-ness of 'description'.

    On the second part, I right now have no clue of where you'll put it as we have not used author bio on our hyperlocal news site. But, surely someone from the community can assist you on this. And meanwhile I will also be digging-in to find out any solution about this and will let you know.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 10:51 pm in reply to: Align navigation with top of "logo" #33648
    vajrasar
    Member

    "because I couldn’t use the header right and kill the space for the “header/title.”

    I don't understand this, that could be the perfect spot for your logo as you want.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 10:47 pm in reply to: How to make bold bold in News Theme #33647
    vajrasar
    Member

    We are using News Child Theme in our main site and and seems to be working in the manner, they should be. Can you post the link of your blog?


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 10:45 pm in reply to: Decrease post title font size #33646
    vajrasar
    Member

    This tweak in on the 876th line of your main theme's stylesheet -

    .genesis-grid h2, .genesis-grid h2 a {
    font-size: 21px;
    }

    i cahnged it to 21px, you can put whatever figure you want.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 10:28 pm in reply to: Need some quick help please with sample theme #33644
    vajrasar
    Member

    The left sidebar is usually small in width as compared to the one in right.

    I used firebug and found the following additions/alterations in the main theme's stylesheet. This is not pixel perfect, but would get you near to want you want.

    NOTE: Please do backup the stylesheet first, before changing anything. (Simply copy-paste the orginal code/css and save it somewhere on your machine).

    .content-sidebar-sidebar #content-sidebar-wrap, .sidebar-content-sidebar #content-sidebar-wrap, .sidebar-sidebar-content #content-sidebar-wrap {
    width: 80%;
    }
    
    .content-sidebar-sidebar #content, .sidebar-content-sidebar #content, .sidebar-sidebar-content #content {
    width: 74%;
    }
    
    .content-sidebar-sidebar .sidebar, .sidebar-content-sidebar .sidebar, .sidebar-sidebar-content .sidebar {
    width: 24%;
    }
    
    #sidebar-alt {
    width: 19%;
    }
    

    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 10:13 pm in reply to: Author page – if no BIO, show some text. #33638
    vajrasar
    Member

    Hey, am not sure if this is the solution but you need to read this -

    LINK

    and just a heads-up, you might be working with ->
    get_the_author_meta('description');

    As stated in the writeup, it gives you the author description.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

    April 6, 2013 at 12:31 am in reply to: Slider CSS #33425
    vajrasar
    Member

    Well, I can tell you what I do in such scenario. If you know that the plugin WILL be updated, then it is best to find out the elements which you want to change and use it in your theme's stylesheet like If I need to adjust height of the div with the id = main to 20 px then I will write this in theme's style sheet -

    #main {

    height: 20px !important;

    }

    So "!important" will override the default style. But sometimes you won't see any change (which is like 1 in 100 times chance), then you have no other option than to change plugin's style sheet and keep record of it so that you can do it again after the plugin gets updated.

    Sometimes I also use Genesis Simple Hooks Plugin for describing any particular style early during the site load by using

    <style type=text/css>

    ____desired style____

    </style>

    these tags in upper sections of the Simple Hook Plugin.

    I know this may not be the best solution, but this is what I do and I would also appreciate if any experienced genesis developer could give us some point if this is not the right way.


    I make WordPress websites using Genesis Framework.

    WordPress/Genesis Development | Customizations

  • Author
    Posts
Viewing 20 posts - 121 through 140 (of 172 total)
← 1 2 3 … 6 7 8 9 →
« 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