Forum Replies Created

Viewing 15 replies - 361 through 375 (of 1,361 total)
  • Plugin Author Frumph

    (@frumph)

    the new ComicPress 4+ theme is an upgraded version of Easel ;/

    …and no, it’s just I don’t check wordpress.org forums often

    Plugin Author Frumph

    (@frumph)

    Do you have the ‘disable rewrite rules’ in comic easel checked in the comic -> config by chance? if you do – uncheck it and then go to settings -> permalinks and click save once

    Plugin Author Frumph

    (@frumph)

    You can CSS the thumbnail box to have a float on it then they all line up <– –> horiz instead of vert

    Plugin Author Frumph

    (@frumph)

    ^ even with this new theme your images are 1,086px × 865px (scaled to 474px × 378px)

    being scaled down

    Plugin Author Frumph

    (@frumph)

    add_action('over-comic-top', 'mycustom_add_nav_to_top');
    
    function mycustom_add_nav_to_top() {
         ceo_display_comic_navigation();
    }

    There are action locations for every sidebar, <sidebar location>-top and <sidebar-location>-bottom
    Just go to comics -> config and enable comic sidebar locations and add ^ something like the above to your child themes functions.php file

    And since those functions need to work inside of the loop they will since you are injecting them within the area that the information is stored

    Theme Author Frumph

    (@frumph)

    because you set a white background behind .narrowcolumn in the customizer?

    Theme Author Frumph

    (@frumph)

    Also have you seen?

    http://www.thewebcomicfactory.com/

    How they do all of their comics? Tons of em, right sidebar.

    And note, you can give all of those ‘friends’ “Editor” access and not admin access and they can’t screw with stuff, just post and edit posts really.

    Theme Author Frumph

    (@frumph)

    The high society theme, that yellow is an image in the images/ directory, you can just replace it with this line:

    body.scheme-high #page-wrap {
    	background: url('images/background-high-page-wrap.jpg') top repeat-x;
    }

    Just replace the url(‘ with whatever URL your own image is, you can grab that image from the directory and modify it as you wish but don’t put it back into the same directory, put it someplace else so that when the theme updates you don’t lose it.

    the background for the menubar you have right now is:

    body.scheme-ceasel #menubar-wrapper {
    	margin: 5px auto;
    	width: 98.2%;
    	background: #5e5e5e; /* Old browsers */
    	background: -moz-linear-gradient(top, #8a8a8a 0%, #707070 49%, #5e5e5e 51%, #777777 100%); /* FF3.6+ */
    	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8a8a8a), color-stop(49%,#707070), color-stop(51%,#5e5e5e), color-stop(100%,#777777)); /* Chrome,Safari4+ */
    	background: -webkit-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* Chrome10+,Safari5.1+ */
    	background: -o-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* Opera11.10+ */
    	background: -ms-linear-gradient(top, #8a8a8a 0%,#707070 49%,#5e5e5e 51%,#777777 100%); /* IE10+ */
    	-moz-border-radius: 4px;
    	-khtml-border-radius: 4px;
    	-webkit-border-radius: 4px;
    	border-radius: 4px;
    	color: #fff;
    	text-decoration: none;
    	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.15);
    	overflow: visible;
    	-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
    	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
    	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
    	-webkit-appearance: none;
    	padding: 6px 5px 5px;
    	border: solid 1px #666;
    }

    Notice the plethora of webkite gradients up there, but, if you use the edit-css module from jetpack you can just override it with:

    body.scheme-ceasel #menubar-wrapper {
         background-color: Transparent;
    }

    Or find a guide online to doing css gradients there’s some tools that will give you the code to replace it whenever you want.

    There’s also a border: in there and such you can set to none; or 0

    Theme Author Frumph

    (@frumph)

    That’s your choice, but I told you how to make an easy link landing page by using /?latest=# #= chapter number

    Plugin Author Frumph

    (@frumph)

    ^ And that’s why I love you peeples 😉

    Thread Starter Frumph

    (@frumph)

    ^ that code is exactly what I need, thanks!

    and yeah; I will. heh didn’t expect you to see that

    Thread Starter Frumph

    (@frumph)

    You have a very good point 😉

    That will work fine, undoubtedly, i’ll just write up an article so that people can understand what that means.

    Thread Starter Frumph

    (@frumph)

    Maybe with a custom add_theme_support section for it, where you can put those params, that’d be a great way of doing it

    http://codex.wordpress.org/Function_Reference/add_theme_support

    Thread Starter Frumph

    (@frumph)

    and i’m going to have 6 of those functions inside my theme then going to have another 6 functions to filter the other ones like tt_default_body .. .. hrm.. little excessive, would be nice to do it in one swell swoop with a single filter

    Thread Starter Frumph

    (@frumph)

    ^ Right, but the change also needs to modify the label name too ? it’s currently not doing that

    (yes the font control label)

Viewing 15 replies - 361 through 375 (of 1,361 total)