Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: footer problem on mobileIt looks like you have a large amount of padding on
.site-info. Do you have any experience adjusting the CSS of your site?Forum: Fixing WordPress
In reply to: Add a single-page app on top of a WordPress themeDepending on how your theme is set up, it might be possible to do using a conditional (if/else) type of statement with “is_user_logged_in()” (https://codex.wordpress.org/Function_Reference/is_user_logged_in)
Something along the lines of-
if ( is_user_logged_in() ) { // show these elements } else { // different front page... }Forum: Themes and Templates
In reply to: Help with CSS for link colours requiredMaybe the following?
.art-footer-text a:visited { color: #2ba6fc; } .art-footer-text a:hover { color: #2ba6fc; font-weight: bolder; }Forum: Themes and Templates
In reply to: [Sydney] menu on mobile going up instead of downI would try changing the top setting to: 60px rather than nixing it completely – (The 60 was just me eyeballing its placement below the title, etc.)
Do you want your menu to have a black background?
.menu-menu-1-container { background-color: #000; }Forum: Themes and Templates
In reply to: Help with CSS for link colours requiredHi Lois,
It looks like maybe your hover settings are being overwritten but other code for when the link has been visited.
.page-id-868 a:visited { }I’m not sure what you’d like your links to look like when someone has visited them already but you would insert that code within the above.
Also, just a note that for your text-decoration CSS property, bold is not an option (http://www.w3schools.com/cssref/pr_text_text-decoration.asp) That would more likely be achieved by increasing the font-weight property.
Forum: Themes and Templates
In reply to: [Sydney] menu on mobile going up instead of downHi Oliver,
You could adjust the CSS for the menu to reposition it below, so the links are accessible to your visitors. I would try not to adjust the JS involved because the toggle functionality seems to be working just fine!
Right now, it looks like there is a top positioning on
#mainnav-mobithat you would want to adjust/remove depending on how you’d like it to be placed below your title.Forum: Themes and Templates
In reply to: [SociallyViral] Disable Menu bar in mobile?Do you have any experience with media queries? (https://en.support.wordpress.com/custom-design/custom-css-media-queries/)
You would want to be hiding the top menu bar if the media query is a certain size or smaller.
Forum: Themes and Templates
In reply to: Help with CSS for link colours requiredDo you have a link to the site in question where that link is? Maybe your selector is slightly off.
Forum: Fixing WordPress
In reply to: Font sizes px tp ptDo you mean your font sizes are appearing as px in the stylesheet but previously they were listed as pt?
Do you have a link to the live site and where the sizes don’t “match”?
Forum: Fixing WordPress
In reply to: Add a single-page app on top of a WordPress themeHave you investigated the WordPress page hierarchy system yet? You might find that helpful as far as templates / how WP moves down the line in looking for different pages (http://wphierarchy.com/)
It sounds like you’d like to shift how your home/index page looks while still keeping most of the theme in tact (which means you wouldn’t probably be touching the header/footer, etc.)
Forum: Fixing WordPress
In reply to: Showing name and posts of subcategory, exclude 2 categoriesYou could either set an exclusion for the categories you only want included or create an array of the ones you DO want listed.
You might find this link helpful for the parameters: http://codex.wordpress.org/Function_Reference/query_posts#Preserving_Existing_Query_Parameters
This likely has to do with which php template (page layout/style) is being pulled – (http://wphierarchy.com/) WordPress looks for the type of layout in a hierarchical order and if it doesn’t find the top .php file, it goes to the next one in line, etc.
Hypothetically, you would want your search & categories page to mimic your home page but with the proper query that would give you your search + category results rather than everything that appears on the home page.
If you have support from your Optimizer theme, I would contact them and see if they could assist you.
Forum: Fixing WordPress
In reply to: Picture/gallery problemsHow are you trying to align them? Are you uploading them as the size you would like them to be?
Forum: Fixing WordPress
In reply to: how can i make my menu items from 2 rows in 1FS-KTI – your menu appears to be on one line to me – did you get this sorted? If not, create a new topic for yourself rather than adding to an existing thread.
Forum: Fixing WordPress
In reply to: Active CSS not firingDo you have a link to the live site & where the CSS isn’t being applied?
Was the CSS added in the stylesheet or through a child theme or from within the dashboard?