Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Montezuma Theme »

[SOLVED] CSS change doesn't saved


  #1  
Old Feb 17, 2013, 10:28 AM
Spesch
 
7 posts · Feb 2013
Hey,

I have some issues with the adaptation of the CSS files. Any change that I make is not saved. For example: if I change the the icon value in the menus_menu1.css, the site have still the default star icon. For three days I am looking for the error. Slowly, I'm going crazy.

Please help me.
  #2  
Old Feb 17, 2013, 10:33 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Montezuma creats a folder in the wp-content/uploads called 'montezuma' It then puts 'style.css in that folder. If the folder is not writable then it will always pick up the original default CSS.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #3  
Old Feb 17, 2013, 10:35 AM
Spesch
 
7 posts · Feb 2013
The wp-content/uploads and the style.css in the sub folder montezuma is there. The CHMOD for the folders is 777.

After editing the menus_menus1.css the style.css file is rewritten. But there is no effect on the blog.
The URL String in the style.css is always correct.
Example: background-image: url( http://speschwho.com/wp-content/them...ages/icons.png );

Last edited by Spesch; Feb 17, 2013 at 10:40 AM.
  #4  
Old Feb 17, 2013, 11:11 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
looks like you have twenty twelve active right now.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #5  
Old Feb 17, 2013, 11:13 AM
Spesch
 
7 posts · Feb 2013
Just right now because I reinstall Montezuma again.
  #6  
Old Feb 17, 2013, 11:22 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
reinstalling the theme isn't going to do anything, it is some other issue with your environment.

Have you tried disabling ALL plugins at the same time?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #7  
Old Feb 17, 2013, 11:26 AM
Spesch
 
7 posts · Feb 2013
So, Montezuma Theme reinstall, new Database install (old DB deleted), edit the icon px code from 0xp to -1944px (for example), copy the line "#menu1 .beispiel-seite > a > i { background-position: 0px -1944px; }" to the menus_menus1.css and nothing happens.

style.css in the /uploads/montezuma/ folder is updated by the time I saved the menus_menus1.css in the Montezuma Option Interface.

I don't have any plugins installed. Its still a clean WP installation. Just WP installed, install the Montezuma theme and then this one edit on the menus_menus1.css.
  #8  
Old Feb 17, 2013, 11:30 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
and you are doing the edit to the menus_menus1.css in the theme options and not editing the physical file correct?

what are your permalinks set to?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Feb 17, 2013 at 11:34 AM.
  #9  
Old Feb 17, 2013, 11:36 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
try this, change
HTML Code:
#menu1 .beispiel-seite > a > i { background-position: 0px -1944px; }
to
HTML Code:
#menu1 .page-beispiel-seite > a > i { background-position: 0px -1944px; }
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Feb 17, 2013, 11:45 AM
Spesch
 
7 posts · Feb 2013
Ha, you solved the problem. The ".page" entry was missing.
Thank you!!

But one question: I tried also to change the color set for the blog title in the header.php.

I deleted the tag:
Code:
<?php bloginfo( 'name' ); ?>
to:
Code:
Spesch<font color="#999999">who</font>.com
but it doesn't work. It's still the custom color set there.
  #11  
Old Feb 17, 2013, 01:16 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Where exactly did you make that change? and what exactly did you put in where?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Feb 17, 2013 at 01:25 PM.
  #12  
Old Feb 17, 2013, 01:21 PM
Spesch
 
7 posts · Feb 2013
Quote:
Originally Posted by juggledad
Where exactly did you make that change? and what exactly did you put in where?
I changed the follow line from:
Code:
<a href="<?php echo home_url(); ?>"><?php bloginfo( 'name' ); ?></a>
to:
Code:
<a href="<?php echo home_url(); ?>">Spesch<span style = "color:#999999;">who</span>.com</a>
in the header.php over the Montezuma Option Interface. I guess this is the wrong way?!
  #13  
Old Feb 17, 2013, 01:24 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
edit the header.php and change the line
HTML Code:
			<<?php bfa_if_front_else( 'h1', 'h3' ); ?> id="sitetitle">
to
HTML Code:
			<<?php bfa_if_front_else( 'h1', 'h3' ); ?> id="sitetitlex">
There is some jscript that is working on the site title. You should probably go thru the CSS and find the CSS for sitetitle and set it up for sitetitlex
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #14  
Old Feb 17, 2013, 01:47 PM
Spesch
 
7 posts · Feb 2013
Quote:
Originally Posted by juggledad
There is some jscript that is working on the site title. You should probably go thru the CSS and find the CSS for sitetitle and set it up for sitetitlex
Found, edit, works like a charm.

Thanks a lot!

All times are GMT -6. The time now is 05:32 AM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.