Allison Tarr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Site Description below the Header ImageHi Darren,
Have you already double-checked that the info is still entered in within your Dashboard, under Admin > Options > General panel?Forum: Fixing WordPress
In reply to: Link Twitter doesn't workDo you have a link to the page in question or any info about the theme you’re using? That would help people troubleshoot.
Forum: Fixing WordPress
In reply to: site is brokenHave you contacted the theme for support directly yet?
http://themeforest.net/item/dailynews-magazine-blog-personal-wordpress-theme/9513358/supportForum: Fixing WordPress
In reply to: Social plugin issuesIn re: to the first issue – Twitter announced in October they would be getting rid of the tweet count feature – it was put into effect this week (http://marketingland.com/twitter-is-redesigning-tweet-follow-buttons-dropping-the-display-of-share-totals-144070)
Forum: Fixing WordPress
In reply to: Page Color during LoadingIn re: the background color, it is because in the CSS, it is set to orange and then set again with the dark green. So that split instant is it before it sees the additional code that writes over it. To nix that, you would want to find the area in the CSS for the body.custom background that uses #dd9933 & replace that with the green you want.
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?If it doesn’t already exist within the code that is there, you might need to add it as a new entity 🙂 CSS stands for cascading style sheets so if it does exist already, the code below it it that you add will overwrite any duplicate properties.
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?You would utilize the background-image CSS property similar to above but with:
.tg-container { background-image: url("paper.gif"); }with the location above replaced with the location of the image you’d like to use.
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?If you want the full-width of that area to change color you would use:
.tg-container { background-color: purple; }(With whatever colour you’d like)
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?Which part are you referring to as the title in this instance? Festive Fun Spots?
Forum: Fixing WordPress
In reply to: Change opacity of Navigator and of some thingsThe background-color of “.main-navigation, #up” needs to be adjusted. It’s currently at 0.2 but you would want to increase that decimal to get it to be less opaque. Same goes for your text background area – “.hentry” would be the class that need the styling changed.
The “Learn More” button might be a theme-based change. Have you contacted the creators of the theme or found any documentation for it?
Forum: Fixing WordPress
In reply to: Adding categories to pages? Separate posts?I’m not sure; I would suggest posting directly to https://wordpress.org/support/theme/accesspress-parallax where the theme’s support is for more specialized knowledge/advice.
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?If there isn’t an existing area for #site-title a, it might be inheriting it from another CSS property. You can add it in as a whole new section for yourself to apply that color change.
Forum: Fixing WordPress
In reply to: How to add domain name to linkAre you working solely within the WordPress dashboard or do you have experience/access to the php files as well?
Forum: Fixing WordPress
In reply to: Blank page on my siteIs this live somewhere? Could you provide a link?
Forum: Fixing WordPress
In reply to: Get previous post for one specific categoryHave you checked out using the parameters from this already: http://codex.wordpress.org/Template_Tags/next_post_link ?