Enormoz
Enormoz is a 2 columns Responsive WordPress theme by MagPress.com. This WP theme supports HTML5/CSS3, custom Typography, featured slider and categories, Adsense ready and many more built-in features.
Tags: Adsense Ready, CSS3, Custom Header, Custom Menu, Featured Content, Fixed Width, Full Width Template, HTML5, Responsive, Right Sidebar, Sidebar Footer, Tabber, Theme Options, Threaded Comments, Two Columns, White
now here’s something different:)
great theme magpress.
This is such a beautiful theme, I can’t comment enough.
beautiful layout, clean design, and the article and photos, everything is placed on a checkered background which looks nice.
perfect theme for my new blog. thanks
css and some others .php can’t save after edit
are you using any cache plugin like wp-cache or w3c cache?…you need to flush or clear the cache first.
perfect theme 😉
but i got problem for uploading logo.
at first it got succes, but when i’ll change the pic for the 2nd time, it didn;t change at all. although i’ve remove the 1st logo before.
favicon is normal… what should i do??
and how to resize the big first word on title post in index??
thankyou before 😀
should have work, what format and size of the logo you’re uploading?
@first-word
open style.css and go to line 1227 edit this
[css]#post-entry article h1.post-title span.first-word {
font-size: 4em; /* change this */
display:block;
line-height: 100%;
left: -6px;
position: relative;
}[/css]
My homepage title is coming after post title and i don’t to repeat homepage title after post/page title. I have tried every possible way in function.php but can’t able to figure out. Can you tell me, how can i get rid of it.
not sure what you mean, check demo and only title with thumbnail in left, is plugin or your own edit causing this?
Let me explain, for example: my blog title is “Shaan Blog”. I have created a post with title, “Samsung Galaxy Smartphone Review”. So the problem is “Shaan Blog” is coming after my post/page, e.g. “Samsung Galaxy Smartphone Review | Shaan Blog”. I want only “Samsung Galaxy Smartphone Review”, not my blog title after my post/page title. I hope this is clear enough. Plz tell me, how can i get rid of it.
i see, you meant the meta title, do you have any seo plugin installed like all in one seo or yoast seo plugin? you need to setup so no blog name included.
I wanna to do it from the theme. I know solution is in theme-functions.php, i have tried to do it but can’t do it properly. I think, you can do it. Just have look on that code.
first i will need to know if you have any seo plugin i mention installed. its useless to edit the theme-functions.php if you have the seo plugin installed, it will filter out any wp_title(). if you don’t have any seo plugin intalled. open lib/functions/theme-functions.php and edit the code in 75 and add this before return $title
[php]
if( is_singular() )
$title = the_title_attribute();
[/php]
become
[php]
if ( ! function_exists( ‘mp_theme_wp_title’ ) ) :
–other code—
if( is_singular() )
$title = the_title_attribute();
return $title;
}
add_filter( ‘wp_title’, ‘mp_theme_wp_title’, 10, 2 );
endif;
[/php]
How I can put smaller images related post ?