happy2b0700
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spun] Add Front page Content Area over the circles?Thank you! The link you provided to the WP Loop info info really gave me confidence to paste the php code into the proper place. Bless you!
Love love love your work!
Forum: Themes and Templates
In reply to: [Spun] Installing Child ThemeYou are welcome!
Im kinda new at this, but if I have to edit a different file, I find I can copy it from the parent Spun editor window, then paste to a new text file on my computer, then upload that via ftp, and then I can access that fresh copy in the Child Theme editor window.Forum: Themes and Templates
In reply to: [Spun] Installing Child ThemeI just did this – do this through your WordPress Dashboard:
Install a plugin ‘One-Click Child Theme’- Then when you use it it returns to you a page that looks like an error, but click on the link and it will take you to the ‘Manage Themes’ part of WordPress, and you will notice it has activated a Child Theme of Spun.To edit the basic style sheet look in the WordPress Dashboard>Appearance>Editor part and select ‘stylesheet.css’ at the far right side. Then you can edit it in the window. You will notice on the top right that you can select the file to edit–BUT ONLY EDIT WHAT IS IN THE CHILD THEME FILE. It tells you ‘This child theme inherits templates from a parent theme, Spun.’
If you need to UPLOAD a differenet file to Hostgator , it will go into the new folder that was just created, in my case:
ftp://[email protected]/public_html/yourblogfolder/wp-content/themes/spun-child
(the ‘spun’ folder exists separately from ‘spun-child’ folder)
Good luck!Forum: Themes and Templates
In reply to: [Spun] CSS call to make side arrows visibleyou are welcome!
Forum: Themes and Templates
In reply to: [Spun] CSS call to make side arrows visibleHI, I just modifed my Spun by putting this in the Child style.css sheet:(The only thing I changed was ‘opacity: .777’ ) color: rgba(230,230,230,.5); you would change for color and beginning opacity I am guessing.
‘
.site-content #nav-below .nav-previous a,
.site-content #nav-below .nav-next a,
.site-content #image-navigation .nav-previous a,
.site-content #image-navigation .nav-next a {
color: rgba(230,230,230,.5);
display: block;
font-size: 200px;
font-size: 20.0rem;
line-height: 100px;
opacity: .777;
position: fixed;
top: 0;
width: 120px;
height: 100%;
z-index: 1;
}
‘