• 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

Badlywired

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 156 total)
← 1 2 3 … 6 7 8 →
  • Author
    Posts
  • February 1, 2015 at 9:53 am in reply to: How to Remove Dotted Lines under links #139273
    Badlywired
    Member

    Hi

    at about line 170 you will find

    a {
    	border-bottom: 1px dotted #333;
    	color: #333;
    	font-weight: 400;
    	text-decoration: none;
    }
    
    a img {
    	margin-bottom: -6px;
    }
    
    a:hover {
    	color: #0ebfe9;
    	border-bottom: 1px dotted #0ebfe9;
    }
    

    Remove the two lines containing
    border-bottom: 1px dotted #0ebfe9;

    So it looks like

    a {
    	color: #333;
    	font-weight: 400;
    	text-decoration: none;
    }
    
    a img {
    	margin-bottom: -6px;
    }
    
    a:hover {
    	color: #0ebfe9;
    }

    and around line 1499 remove border bottom dotted as follows

    .footer-widgets a {
    	border-bottom: 1px dotted #fff;
    	color: #fff;
    }

    to

    .footer-widgets a {
    	color: #fff;
    }

    My techy blog WordPress and stuff badlywired.com

    February 1, 2015 at 9:42 am in reply to: Shortcodes on pages #139269
    Badlywired
    Member

    I guess it is fixed


    My techy blog WordPress and stuff badlywired.com

    February 1, 2015 at 9:38 am in reply to: A 'second' Primary Sidebar #139268
    Badlywired
    Member

    Well there is, if you want to get into the code and start writing conditional tags or using css to hide things.

    Carrie Dils suggests using body classes and display none, which would be an approach that might suit http://www.carriedils.com/genesis-theme-tutorial-primary-sidebar/

    You could write different page templates, one for one set of widgets using primary and one for secondary, this would take a bit more coding but would probably be the most 'user friendly' if non developers are using it, the instruction use this tempalte displays x and this template displays y is easier than explaining classes.

    You could just a primary sidebar and widget logic https://wordpress.org/plugins/widget-logic/ plugin to deterime which pages widgets are shown on.


    My techy blog WordPress and stuff badlywired.com

    February 1, 2015 at 8:06 am in reply to: Full clickable header image area #139256
    Badlywired
    Member

    An alternative approach could be to code in a a 'top bar' above the header and have widget areas in that.

    I explain how to create a top bar and fixed top bar here https://badlywired.com/2015/02/create-bar-header-genesis/


    My techy blog WordPress and stuff badlywired.com

    February 1, 2015 at 7:19 am in reply to: Add buttons in a widget #139252
    Badlywired
    Member

    When you log in to my.studiopress.com with your account you used when you purchased the theme, each theme you can download has a setup guide that covers these details, for Altitude Pro it is here http://my.studiopress.com/setup/altitude-pro-theme/


    My techy blog WordPress and stuff badlywired.com

    January 18, 2015 at 2:01 pm in reply to: Custom Sidebar for the Homepage #137873
    Badlywired
    Member

    Thank you for the thanks, it makes it worthwhile.


    My techy blog WordPress and stuff badlywired.com

    January 18, 2015 at 6:43 am in reply to: Redirection in PHP Code #137847
    Badlywired
    Member

    Although you say you realised your site is slow, when using it (from London UK) it certainly doesn't feel slow.

    And if you are paying only 30 Krone a month, for shared hosting (about USD 3.50) then the host is reasonable.

    There are things you can do see
    https://developers.google.com/speed/pagespeed/insights/
    and
    http://gtmetrix.com/reports/www.iexcelbooks.no/byuLZ21i
    for some ideas

    Simplest thing to do is implement browser caching. I'll write a blog post on my blog and link it up.

    -- edit--
    Here it is http://badlywired.com/2015/01/speed-wordpress-website/


    My techy blog WordPress and stuff badlywired.com

    January 18, 2015 at 5:33 am in reply to: Lost SEO/Page Rank after theme upgrade #137844
    Badlywired
    Member

    Fair enough. I have never heard of Attracta but then I haven't heard of a lot of things.

    If you are paying them $199 per month then they should be able to answer your questions.


    My techy blog WordPress and stuff badlywired.com

    January 18, 2015 at 5:28 am in reply to: Changing background image on one page only #137843
    Badlywired
    Member

    Browser cache CSS so if you are making changes and they dont appear at first it is always worth clearing your cache
    http://www.wikihow.com/Clear-Your-Browser%27s-Cache


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 6:02 pm in reply to: Lost SEO/Page Rank after theme upgrade #137813
    Badlywired
    Member

    Have to checked Google Webmaster tools?

    Also I'm no expert in this but your robots.txt is show a rather strange (in my opinon) entry

    http://kylesellsbusinesses.com/robots.txt

    #Begin Attracta SEO Tools Sitemap. Do not remove
    sitemap: http://cdn.attracta.com/sitemap/1794602.xml.gz
    #End Attracta SEO Tools Sitemap. Do not remove

    And that site map contains (in my limited experience) nothing of value, so I can't see that it is helping matters

    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <sitemap>
    <loc>http://cdn.attracta.com/sitemap/1794602/0.xml.gz</loc>
    <lastmod>2015-01-17</lastmod>
    </sitemap>
    </sitemapindex>

    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 5:46 pm in reply to: Plugin for Measuring Site Traffic #137812
    Badlywired
    Member

    Either

    Google Analytics
    Piwik Analytics
    or
    Jetpack

    And keep your site up to date


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 5:44 pm in reply to: H1 and H2 Aren't Responsive in Parallax Pro? #137811
    Badlywired
    Member

    Looks OK to me. But if you have a problem maybe a support ticket rather than the forum would be better?


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 5:41 pm in reply to: Mass of spam with Genesis eNews Extended #137810
    Badlywired
    Member

    I did a bit more Googling and found others complaining of spam signups with double opt in on mailchimp.

    One says "I believe that bots are injecting email signup spam directly at the Mailchimp's hosted signup forms."
    http://stackoverflow.com/questions/18893828/i-think-the-mailchimp-double-opt-in-process-is-broken-or-some-bot-is-circumventi


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 5:35 pm in reply to: Move Style.css stylesheet to the footer rather than header #137809
    Badlywired
    Member

    According to Google CSS in the document body adversely impacts rendering performance, moving it out of head would put it in body.


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 5:18 pm in reply to: Changing background image on one page only #137806
    Badlywired
    Member

    OK change it to

    body.page-id-15146  .site-header-banner {
    background: url("http://laurazera.com/wp-content/uploads/2015/01/header-two.png") 
    #ffffff no-repeat center scroll;
    }

    That is working for me


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 2:48 pm in reply to: Changing background image on one page only #137798
    Badlywired
    Member

    There is missing } at the end of your style.css

    Try again but put the code immediately before
    /*

    Media Queries
    ---------------------------------------------------------------------------------------------------- */

    And then check the page
    http://laurazera.com/?page_id=15146


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 10:55 am in reply to: Mass of spam with Genesis eNews Extended #137785
    Badlywired
    Member

    This is something that worries me, I was made aware by a client of lots of suspected spam MailChimp signups.

    Double opt-in was active, so I don't get what is going on

    1. Why do it any way, whats the point of spam email signups?
    2. Is there a hole in MailChimp that allows adding to a list by bypassing the double optin (e.g. a posts parameter) or are spammers really working out what the confirmation link is?


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 10:50 am in reply to: Navigation tips on landing pages #137783
    Badlywired
    Member

    I agree with Ren. We have in the past done extensive A/B testing, for clients, on conversion rates on landing pages and landing pages without Navigation have higher conversion (normally form sign up). It is not a massive difference but enough to take seriously, in the region of 55% versus 45%.


    My techy blog WordPress and stuff badlywired.com

    January 17, 2015 at 6:14 am in reply to: Changing background image on one page only #137755
    Badlywired
    Member

    My code should work with your theme if you put it in as it should override the the css for that page, conditionally.

    But it isn't in your style sheet so I can't debug any issues with it

    see http://laurazera.com/wp-content/themes/beautiful-pro/style.css

    If you add my code back in, I'll take another look at your page http://laurazera.com/?post=15146

    and tell you if it needs any tweaking to make it work.


    My techy blog WordPress and stuff badlywired.com

    January 16, 2015 at 5:29 am in reply to: Changing background image on one page only #137650
    Badlywired
    Member

    Hi,

    Looking at your site I am assuming you are wanting to change the custom header background strip not the background of teh WHOLE page (which is what your code would do)

    In which case your CSS needs to be more qualified to target the custom background

    body.page-id-15146 .custom-background .site-header-banner {
    background: url("http://laurazera.com/wp-content/uploads/2015/01/header-two.png") 
    #ffffff no-repeat center scroll;
    }

    See here how I worked that out http://screencast.com/t/Io0EsIECk4lu

    The CSS needs to go in your child themes' style.css file it can go at the end (or anywhere really)
    wp-content/themes/beautiful-pro/style.css


    My techy blog WordPress and stuff badlywired.com

  • Author
    Posts
Viewing 20 posts - 121 through 140 (of 156 total)
← 1 2 3 … 6 7 8 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 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