ajcwebcreations
Forum Replies Created
-
Forum: Themes and Templates
In reply to: issue with right side on mobile deviceOkay, it could also be the default margin and padding. Currently your link goes just to a Website Coming Soon page, do you have the site online for viewing as of yet? If you haven’t already, you could try adding CSS to “reset” the default in your style.css file. Something like below:
* {
margin: 0;
padding: 0;
}Or
body {
margin: 0px;
padding: 0px;
}Let me know if this helps.
Andrew
Forum: Themes and Templates
In reply to: issue with right side on mobile deviceHello,
Just a suggestion and not sure if this will work, but do you have the below meta tag in the <head> of your documents:
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
May or not work, just a initial suggestion. Let me know if this helps.
Thanks,
Andrew
Forum: Themes and Templates
In reply to: [Inkblot] Centering Menu ItemsHello,
Can you provide a link to your site so we can look at the page elements in question?
Thanks,
Andrew
Forum: Themes and Templates
In reply to: [Fruitful] can't install dummy data fileHello,
Is this is for a Woocommerce theme? Do you have the Woocommerce plugin installed as well?
Andrew
Forum: Themes and Templates
In reply to: [Fruitful] H1 and h2 font color changeHello,
You should be able to change the color with some simple CSS. If you go to Appearance > Theme Options > Custom CSS, you can enter your CSS to change the color. For exammple:
h1 {
color: #fff; (would change color to white)
}h3 {
color: #000; (would change color to black)
}But you can enter any color you want here. Let me know if this helps.
Andrew
Forum: Themes and Templates
In reply to: Wrong CSS applying?Great! Glad I could help!
Forum: Themes and Templates
In reply to: How to change background color?Hello,
Try this CSS below in your child-theme’s style.css file.
.homepage-block, .block-spacer, #page-post, h2.centered span, .tribe-events-list-separator-month span {
background-color: #000;
}#000 is just for black. You can substitute any color you want here.
Let me know if this helps.
Andrew
Forum: Themes and Templates
In reply to: Wrong CSS applying?Hello,
Try placing !important next to the CSS styles you want to be applied. So for example:
#calendar_wrap a {
color: #000 !important;
}Let me know if this helps.
Andrew
Forum: Themes and Templates
In reply to: Uploading new theme issueHello,
Are you getting this with any theme you try to upload or just a particular one? If it’s with a particular theme, can I ask which one?
Andrew
Forum: Themes and Templates
In reply to: [Formation] White spaceHello,
Any chance you can provide a link to your site? It would be helpful to see your site as to get a better idea of the changes needing made to help you resolve your issue. Thanks!
Andrew
Forum: Themes and Templates
In reply to: How to edit the color of bullet points, numbered lists, etc.Great, glad I could help! Take care
Andrew
Forum: Themes and Templates
In reply to: How to edit the color of bullet points, numbered lists, etc.To change all of the text to black throughout the entire site, try this:
body {
color: #000;
}With this, you shouldn’t need the previous CSS. Let me know if this helps.
Andrew
Forum: Themes and Templates
In reply to: How to edit the color of bullet points, numbered lists, etc.Hello,
I forgot what entering html tags does in these posts. Typical list tags are ul, ol, and li for list items.
Andrew
Forum: Themes and Templates
In reply to: How to edit the color of bullet points, numbered lists, etc.Hello,
The typical tags for lists in HTML are
- or
- and
- . Do you have a particular list on your site your looking to change? You may have to get more specific with the CSS selector because just entering the HTML tags for lists in the current CSS would also change the navigation menu text.
Andrew
Forum: Themes and Templates
In reply to: Only some changes in child theme show upHello,
Try placing !important right next to the styles that don’t seem to be changing. !important should place priority on these styles if for some reason the stylesheet doesn’t want to listen. So for example,
p {
color: #fff !important;
font-size: 2em !important;
}Please let me know if this works.
Andrew