Alright right now I'm having issues with displaying a background image on my test site I tried adding my code to the body tag and the container tag. But every time I try viewing it live it don't show up. Here's the code I've been using:
background-image: url("images/technologx/bg.png"); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
.
Also what do I need to do to create my own menu for the theme along with adding links to the bottom of the forum that will show up on every page?
I may post more questions in this thread when I think of them I appreciate anyone and everyone's help.
The test site address:
http://testing.technologx.x10.bz
(2015-12-04, 12:41 AM)Technologx Wrote: [ -> ]Alright right now I'm having issues with displaying a background image on my test site I tried adding my code to the body tag and the container tag. But every time I try viewing it live it don't show up. Here's the code I've been using:
background-image: url("images/technologx/bg.png"); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
[...]
You forgot to remove 1 semicolon.
Use this:
background: url(images/technologx/bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
Thank you for your help man. So does that go at the body tag or the container tag? Also do you know anything about the other part of my question?
It goes on the body in global.css
For the menus just add your code in the header and footer templates, it will show on every page.
So the menu needs to be in both header and footer templates? Also if I need a separate css would that be linked in the headers of the header & footer template? Sorry I'm new to theme making I'm just trying to learn.
No, was just saying which templates they go in as you are wanting to add more links in your footer menu
Have a look in both templates and see where you want extra links.
(2015-12-04, 03:25 AM)iAndrew Wrote: [ -> ]No, was just saying which templates they go in as you are wanting to add more links in your footer menu
Have a look in both templates and see where you want extra links.
Alright now how would I go about changing the read, unread, locked & redirect icons? Dark Majestic has them as on and of along with lock and link.
I don't know as that is a custom theme so it's been modified, ask the developer on his site.
If i am right you are using majestic theme then your icons are in images/majestic/
on.png off.png offlock.png and offlink.png you can change the icons through image replacement(easiest method) or by modifying majestic.css(it ll difficult for you if you never edited a css file)
People I'm not having issues with the Majestic Dark theme I'm just using it as a example of what I want to do with the theme I'm creating.