Andre
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing Link Color on Tuesday Themeyou would have to insert this in the css
a { color: #F07373; }
Forum: Themes and Templates
In reply to: [SuevaFree] Change footer backgroundif you go in the Dashboard.
GO to Appearance on the left sidebar.
Click on the Editor.add this to the css
or if you have something that says theme optionsGO to theme options > General > Custom CSS
#footer { background: blue; border-top: none; }
Replace the blue with your color add a hexadecimal color or regular name.
Forum: Themes and Templates
In reply to: how can we get this clear and neat themeor if you want the content centered. Try this one.
body { background-color: #FFFFFF; }
and remove the box shadow
from this
body .site { box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); margin-bottom: 3.42857rem; margin-top: 3.42857rem; padding: 0 2.85714rem; }
to this
body .site { margin-bottom: 3.42857rem; margin-top: 3.42857rem; padding: 0 2.85714rem; }
Forum: Themes and Templates
In reply to: how can we get this clear and neat themetry adding this to the css
.site {
max-width: 100%;
}you can find this in your Apperance then go to Editor , then style.css on the right.
or if the theme option has custom css
Forum: Themes and Templates
In reply to: Child theme errorHope this works!
Forum: Themes and Templates
In reply to: Child theme errorYou can do it automatically by adding this plugin.
Orbisius Child Theme Creator
with this plugin you can click on your theme in the WordPress Dashboard appearance sidebar. That allows you to save time.
Forum: Themes and Templates
In reply to: [Smpl Skeleton] Change Color of Callout Title in ShortcodeWhch part are you referring too. Can you link to your site.
Forum: Themes and Templates
In reply to: Content fixed background imageFor this it would be best to create a child theme.
Because when you update the theme all your changes will be erased.
Then you would need to go into the css and change several parts of the page.
The white on the background is dividing into separate parts.I can offer to do this for you if you would like.
Its seems that you would have to edit every item. You would need to change the text format for the descriptions.
Forum: Themes and Templates
In reply to: [ePublishing] Website field in CommentsGo to the dashboard. Which is on the back part to change the wordpress setting.
You will see Pages or if your talking about post click Post on the left sidebar.
When you do that choose the page or post you want to edit.
At the top you will see a little box on the top right of the page called Screen Options.
Then you will see a checkbox for Discussion.
Uncheck the boxes for allow comments.
You can also uncheck allow trackbacks.This should work. Hope it helps.
Forum: Themes and Templates
In reply to: Content fixed background imageOk we all go through that at first. No worries.
So can you go to the Dashboard for me.
This is the back-end where you get to change all your content.
Then on the left hand side you will see a toolbar and click on Apperance.
Click on Background.
You should see the Select Image then click Choose File.
After you select the file you want click Upload.
You can then edit the Display options.
The options Left, No Repeat, Fixed should work to set that as you background image for you page.This should work.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Disable navigation under postWhat is the site you are referring too.
Forum: Themes and Templates
In reply to: Which WordPress Theme?I looked for you but it was saying this theme cannot be downloaded or bought. I guess it was customized from for special use. I found something similar to it maybe you can just customize it to your liking.
https://anthemes.net/themes/1page/
Hope it helps.
Forum: Themes and Templates
In reply to: [Purple Pro] Change font color in page titlesOk its no problem your a designer. You are going to be able to do this.
So go into you dashboard.
Click Apperance.
On the drop down menu click on Editor.
On the right side you will see Template and Styles on a list.
Click on the one that says stylesheet style.cssScroll down until you see
/* Global Styles ------------------------------------------ */ h1 { margin: 0 0 0.25em; color: purple; font: bold 2.462em "Dosis",sans-serif; }
change the color to purple like mine or you can change it to what hexadecimal color you would like.
Forum: Themes and Templates
In reply to: [Fruitful] Change font-size in [description]ok this is what you can do.
Go to the Dashboard.
Click on Appearance.
Go to theme options.
then Custom CSS.
Insert this into the css.div .text { font-size: 70px !important; }
You can change the 70px to a higher number or a lower number. The original is was 40px.
Hope this helps.Let me know.