Wordpress Page Content not showing - wordpress

I've recently started a new website with Wordpress through blue host.
I'm completely new to this and had never even heard of either of these programs up until last week.
I downloaded a theme from Mojo marketplace linked to blue host called Solstice. I've managed to make some customer changes and get some pictures and pages and post headers on there.
The only trouble I'm having right now is that I've wrote text in the About us section but it doesn't show up on the website. I haven't downloaded any plugins yet and the template it still set to default.
I have tried googling the answer but not had much luck.
Any help would be greatly appreciated.
www.2lostbuffaloes.com

As Naveed mentioned, the text color is white, over white background, that's why you can't see it. If you add to your css this rule:
body {
color #000000;
}
The text should appear.
You will probably also want to add white to the text color of the footer:
.footer-top, .footer-top a {
color: #ffffff;
}

In style sheet, you need to do
body{
color : #000000;
}
Right now its white color for text, if you do control A on about us page you will see all text.

Related

Stuck on Wordpress CSS change the plugin button Colour

Hi I am new on here first of all nice to meet you all
I am facing a problem on wordpress
I am using "Quick Download Button" Plugin which the link is https://wordpress.org/plugins/quick-download-button/#description
after I have install it on my site I tried to change the button colour by css but I never ever success to change it. I have checked the button in inspect and I copied it but it didn't work.
what I tried was
.g-btn.f-l
{
color: #3c1c1c;
}
but it never worked.
please anyone help will be awsome thanks and sorry for my bad english
Like #jared said - it shouldn't be too hard to find the right selector and change the color within your browsers dev-tools. If you see the color change, bingo! Then if that doesn't work within your css file itself, you might have an ordering issue with your sites css files (i.e. your css is loading before the plugins). Quick way to test this is add the !important selector to that rule on your file - e.g:
color: #3c1c1c !important;
the css color-parameter is not defining the color of the button, but from the text of the button. if you want to change the color of the button, you need to look after "background" or "background-color".
example:
.g-btn.f-l{
color: #FFFFFF;
Background-color: #3c1c1c;
}
Visible example:
Source of example: Kryptonews Lexikon

WordPress WooComerce background customization

total beginner here, so apologies if this is not the place to post.
my site has a white background throughout but woocomerce has an annoying gray background around the edges of its pages (cart, checkout, product pages), and i was able to figure out that by adding the following code to Customize CSS section of my site fixed the problem
.woocommerce-cart, .single-product { background: white; }
BUT I cannot find the value to use for "checkout page" to change its background to white. i tried .woocomerce-checkout and woocomerce_checkout and .checkout. no luck :( any advice?
The body class of the woo-commerce checkout page is correct what you have mentioned (.woocommerce-checkout).
Please try adding !important flag to CSS property.
.woocommerce-checkout { background: white !important; }

Wordpress page complete text gets underlined when page is hovered

I'm creating a website for myself in WordPress using Elementor free plugin and Phlox theme. I've just started and completed a couple of sections. Each section has some text, buttons and some images. The issue I'm facing here right now is that when I open the website and move my mouse pointer inside the Webpage area, the text in all sections gets underlined just like any hyperlink but there is no hyperlink with any text. I've checked settings in customizations and other stuff in theme settings but nothing helped. I'm new on WordPress and don't know how to debug this in any technical depth. Please have a look and tell me how can I fix this issue.
I can't continue with these underlined text appearing all over my page.
Link : myWebPage
Any help is appreciated.
Try this:
.csstransitions .aux-page-show-circle.aux-page-animation-done #inner-body, .csstransitions .aux-page-show-circle.aux-page-animation-done {
height: auto;
overflow: visible;
text-decoration: none;
}
Always attempt to use your browser dev tools to check these things. In your css you have this in your custom.css file. Dont know why its there but thats the cause
body:hover {
text-decoration: underline;
}

WordPress background styling issues

Can anyone please help me, I've had some work done on a site www.integratedproperty.co.uk
I have added a new page through my theme but I need to add the darker grey background column boxes on a few pages, but I do not know how to do it.
The pages in question are:
www.integratedproperty.co.uk/affiliates
Privacy Policy, Cookies Policy and Disclaimer. I need the background boxes to be the same as the other pages on the site, i.e www.integratedproperty.co.uk/testimonials
Please help!
I'm not sure if I got your point. Do you want to know how to change the backgroundcolor of the div-boxes with "legal", "Accountancy/Tax:" and so on?
If so you have to go to "Design"->"Editor" (direct link: www.integratedproperty.co.uk/wp-admin/theme-editor.php), select your active theme and click on the bottom right on "Stylesheet - style.css".
There you can add your code to change the background-color:
.span3 {
background-color: rgb(239, 239, 239);
}

MailChimp White Text Template Issue

I'm having a little difficulty with a MailChimp template I have recently made.
It has been fully tested and works fine, the only issues comes when the clients is editing the text in the editor. The text colour is supposed to be white but the trouble is, then background colour of the MailChimp editor is white so it doesn't "appear" for the client easily.
I had and resolved the same issue -> the white text was on a white background in the editor.
To resolve:
I simply had to ensure the 'background' style was set to !important in my code
This then ensured this same style was also shown in the Mailchimp editor
e.g.
#mybutton {background: #000 !important; color: #fff !important}
Thanks for the help guys but I have resolved this issue!
It was a case of adding a background colour to the property which in turn applies this to MailChimps editor.

Resources