curative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Moesia] How do I edit the text of the footerHi TR,
I learned that A2 blocks direct editing in WP Admin. I had to go into the cPanel which is a little scary as I am technically challenged. But I made it.
Thank you for walking me through it.
Uyen
Forum: Themes and Templates
In reply to: [Moesia] How do I edit the text of the footerHi Sam,
Thank you for responding to my post. When I went to Appearance, my “Editor” is showing “Editor Locked” in red. When I clicked on it, I could only see optimization by my hosting provider (A2). Any idea what it means and how to unlock the “Editor”?
Uyen
Forum: Themes and Templates
In reply to: [Moesia] How to reduce the font size of the welcome message?Hi Janell,
I am no expert either but I think the codes below should work. Put them in your Custom CSS (and make sure you save the changes). I also have extra codes for font, style and alignment but you can delete the rest of them if you only want to change the font-size.
THE TOP TEXT (of the welcome box)
.welcome-title {
font-size: 32px;
font-weight: 500;
font-style: italic;
text-align:right;
text-shadow: none;
}THE SUB-TEXT (of the welcome box)
.welcome-desc {
font-size: 32px;
font-weight: 500;
font-style: italic;
text-align:right;
text-shadow: none;
}THE CALL-TO-ACTION BUTTON
.welcome-button {
float: right;
width: auto;
text-align: center;
}If this still does not help, you may want to post your issue in a new thread as this thread is resolved and the experts on this forum may not see your message.
Good luck!
@satishdevnani – It has been a while so I may not remember how I finally fixed this problem. Put this in your custom CSS and see if it works for you (it works for me).
.page .widget-area {
width: 0px;
}
.page-template-default .content-area {
width: 1110px;
max-width: 100%;
}
.page-template-default .widget-area {
width: 0px;
}Brilliant! It works. Thank you.
Forum: Themes and Templates
In reply to: [Moesia] Adjust header height and main body textOK, I figured this one out by adding this:
div#sidebar-footer
div.textwidget {
width: 970px;
}In case anyone is trying to do the same thing, it is important to have the subsection in bold above.
Can anyone help with my 2nd issue (reduce space between background and main body of text)?
Forum: Themes and Templates
In reply to: [Moesia] Adjust header height and main body textOK, removed the .col-md-8 fixed the menu issue. Thanks.
The reason I made change to the width of .col-md-4 as below is because I want all the text on the same line for the footer. If I remove this, how do I make text on the same line in the footer widget?
.col-md-4 {
width: 100%;
}Forum: Themes and Templates
In reply to: [Moesia] Problems with responsivenessThank you for taking the time to respond, vladff.
1. I added the } at the end of the previous code. Still does not work. Not a big deal if the button does not show due to reduced screen width.
2. I hope to fix this issue though. The setting as it is now is to circumvent the code set to reduce the sidebar width. Below is the previous thread that may provide more information.
https://www.ads-software.com/support/topic/how-to-reduce-the-side-bar-width?replies=8
Forum: Themes and Templates
In reply to: [Moesia] Problems with responsivenessSorry, the website is: https://curativeconsulting.com/
Forum: Themes and Templates
In reply to: [Moesia] How to reduce the height of the widgetTHANK YOU!
Forum: Themes and Templates
In reply to: [Moesia] How to reduce the height of the widgetYou have been very helpful. I really appreciate it!
Just so I can teach myself how to fish (a long process), how do you distinguish which footer to make the changes? There is the original footer and then footer widget A. If I add footer widget B, for example, how do I indentify them?
Sorry that I still need help with issue and a related one.
How do I set the texts of the welcome message and the CTA button to the right that show in responsive mode? The button does not show in smaller screen now.
I am able to align-right the texts but they “bleed” into the image area instead of staying in the red background box.
Many thanks!
Forum: Themes and Templates
In reply to: [Moesia] How to reduce the height of the widgetThank you so much for these codes! I made the adjustments as needed.
I tried to do the same to reduce the height of the footer area (for the phone and email) by setting paddings and margins to 0 but it did not work for me. Could you help?
div#sidebar-footer.footer-widget-area div {
padding-top: 0px;
padding-bottom: 0px;
margin-top: 0px;
margin-bottom: 0px;
}Someone helped me fix this. No longer need help. Thanks.
Forum: Themes and Templates
In reply to: [Moesia] How to reduce the side bar width?THANK YOU! It works!