Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add a border to the navigation barJust a note to add the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
If you change the CSS in your theme and then upgrade it at some point, your styling changes will be lost.
Do you want the border under just the navigation portion or the header as a whole bar?
Forum: Fixing WordPress
In reply to: How to exclude specific page from archivesSince it’s a pro theme, there might be a way to do so easily within it’s settings. I would recommend contacting the support for it (http://my.studiopress.com/themes/generate/) before diving in to a code-based solution.
Forum: Themes and Templates
In reply to: [Freak] Page Names & a pink line at the bottomOh, for the font-size! It might be because of a typo – sorry about that – there should be a colon in-between font-size & X. That might be why it’s just not recognizing it without the syntax. Let me know if that fixes it!
#top-menu ul li a { font-size: 70px; }To switch the tagline size, you would want to exchange for the selector:
#masthead h2.site-descriptionThe h2 is a different type of heading and the class name is .site-description
Forum: Themes and Templates
In reply to: [Freak] Page Names & a pink line at the bottomHi Tara,
I think I have a few tweaks/suggestions that could help things.For when you click through to your individual blog entries, I think adding this CSS code should fix it:
.mega-container.content .content { border-top: solid 3px #998550; }This CSS chunk will change the colours of the links inside that “must log in” section:
p.must-log-in a { color: #998550; }The icon with the three little lines looks like your mobile menu for when a visitor is on a mobile device. Is it possible you set it to visible or inline-block when tweaking other code?
For your font size, that would be relative straight foward once you figure out the sizing you’d like to achieve.
For the title (currently “Tara Lemana”):
#masthead.header-medium h1.site-title { font-size: X; }For the sizing of the items in your top-menu:
#top-menu ul li a { font-size X; }Keep in mine that where the X’s are you would replace with something like 70px 🙂 or whatever your preferred size turns out to be. Let me know how this all works out!
Also, just a note to add the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
If you change the CSS in your theme and then upgrade it at some point, your styling changes will be lost.
Forum: Themes and Templates
In reply to: Fixing the site title in Newswire themeHave you tried:
div.cycle-slideshow { display:none; }This doesn’t remove it- just hides it from the screen essentially. I wonder if the theme has something built within it to disable that feature?
Forum: Fixing WordPress
In reply to: Coding ErrorThis might help illustrate what I mean: http://www.w3schools.com/html/html_links.asp
On line 284 I would try adding
</a>after your current listed code.Forum: Fixing WordPress
In reply to: cant get css working same on all pagesThank ubonline! Sometimes themes/sites have multiple stylesheets. At first glance, it looks like your site has the one.
Is it possible your selectors are slightly off for your CSS in a way that is affecting the non-home pages? What style changes are you trying to achieve?
Forum: Themes and Templates
In reply to: Fixing the site title in Newswire themeDo you have any experience with adjusting CSS?
If you want to do that please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
#site-heading { margin-right: 0; }Forum: Fixing WordPress
In reply to: Video shows transparent because of container's opacityHi Codesniffer,
Did you get this sorted out? The video on your site isn’t appearing as transparent to me.
Forum: Fixing WordPress
In reply to: Picture/gallery problemsWhat theme are you using?
Have you considered uploading the 3 photos to the native WordPress media gallery, inserting them into your page & adding the link within the text editor?
Forum: Themes and Templates
In reply to: [Freak] Page Names & a pink line at the bottomI’m not familiar with this particular theme; do either/both of you have links to your live sites? It’d help me try to help pinpoint each of your issues.
Forum: Themes and Templates
In reply to: Fixing the site title in Newswire themeDo you have a link to the live site?
Forum: Fixing WordPress
In reply to: widget title removalDo you have a link to the live site?
Do you have the text/code that you inserted (or a screencap) that you inserted for your widget?
Forum: Fixing WordPress
In reply to: cant get css working same on all pagesDo you have a link to the live site? It’d be easier to potentially troubleshoot that way.
How are you connecting your stylesheet to your page(s)?
Forum: Fixing WordPress
In reply to: Loop posts only 2 months old.Hi Pahroblem,
I think the section of the Codex that you might find helpful as a reference for this would be: https://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters
You would most likely need to add extra parameters to your $args array.